Greasy Fork 支持简体中文。

Diep.io Crosshair Pointer remixed remixed

Makes the pointer crosshair and the aim easily. This script based by Mixaz017's script. Thanks a lot!

安裝腳本?
作者推薦腳本

您可能也會喜歡 Diep.io Mod Menu

安裝腳本
  1. // ==UserScript==
  2. // @name Diep.io Crosshair Pointer remixed remixed
  3. // @version 0.3
  4. // @description Makes the pointer crosshair and the aim easily. This script based by Mixaz017's script. Thanks a lot!
  5. // @author HarryplaysOMG4
  6. // @match https://diep.io/
  7. // @namespace https://greasyfork.org/en/users/1076889
  8. // @license If you choose to publish a edited version, please credit me!
  9. // ==/UserScript==
  10. var cursorStyle = "crosshair";
  11. var cursorRefresh = function() { document.getElementById("canvas").style.cursor = cursorStyle; };
  12. window.onmouseup = function() { cursorStyle = "crosshair"; cursorRefresh(); };
  13. window.onmousedown = function() { cursorStyle = "crosshair"; cursorRefresh(); };
  14. window.onmousemove = function() { if ( document.getElementById("canvas").style.cursor != cursorStyle ) { cursorStyle = "crosshair"; cursorRefresh(); } };