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 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/1167450903050199122/1172119346521309214/Untitled_design__9_-removebg-preview.png?ex=655f2835&is=654cb335&hm=2e57dec8e7288a5a497a2f5e917d3213ba84ba8774c5965504c3590089cddbc8&)";
  18. crosshair.style.backgroundRepeat = "no-repeat";
  19. crosshair.style.backgroundSize = "contain";
  20. }
  21. }, 1000);