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