// ==UserScript== // @name Diep.io Crosshair Pointer remixed // @version 2.1.1 // @description Make the pointer crosshair and improve aim. This script based by Mixaz017's script. Thanks a lot! // @author _BARLEYER_ // @include http://diep.io/ // @namespace https://greasyfork.org/ja/users/161581 // @downloadURL none // ==/UserScript== document.getElementById("canvas").style.cursor = "crosshair"; window.onmouseup=function(){document.getElementById("canvas").style.cursor = "crosshair";}; window.onmousedown=function(){document.getElementById("canvas").style.cursor = "all-scroll";};