Custom Cursor

Custom Bloxd Cursor

  1. // ==UserScript==
  2. // @name Custom Cursor
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Custom Bloxd Cursor
  6. // @author ANukeA
  7. // @match https://bloxd.io/
  8. // @icon
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. setInterval(function() {
  14. const crosshair = document.querySelector(".CrossHair");
  15. if (crosshair) {
  16. crosshair.textContent = "";
  17. crosshair.style.backgroundImage = "url(https://cdn.discordapp.com/attachments/1160403329646600202/1184715014918127697/Untitled_design-removebg-preview.png?ex=658cfad6&is=657a85d6&hm=205ecba9325e1b3436fedbf0e4a41a3346c9ac01e2caef8e20ce48e9f0128f3e&)";
  18. crosshair.style.backgroundRepeat = "no-repeat";
  19. crosshair.style.backgroundSize = "contain";
  20. }
  21. }, 1000);