// ==UserScript== // @name Diep.io Crosshair Pointer remixed // @version 2.2.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== var cursorStyle = "crosshair"; document.body.onmousemove=function(){document.getElementById("canvas").style.cursor = cursorStyle;}; window.onmouseup=function(){cursorStyle = "crosshair";}; window.onmousedown=function(){cursorStyle = "all-scroll";};