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 You
  7. // @match https://bloxd.io/
  8. // @match https://staging.bloxd.io/
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=bloxd.io
  10. // @grant none
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. setInterval(function() {
  15. const crosshair = document.querySelector(".CrossHair");
  16. if (crosshair) {
  17. crosshair.textContent = "";
  18. crosshair.style.backgroundImage = "url(https://cdn.discordapp.com/attachments/1203712027705479228/1221816326553731173/Crosshair.png?ex=6613f420&is=66017f20&hm=e8f4d97851e2fb876cf0f0676d137b533f9ffc9041626d7e254b9dee042c5ba7&)";
  19. crosshair.style.backgroundRepeat = "no-repeat";
  20. crosshair.style.backgroundSize = "contain";
  21. crosshair.style.width = "30px";
  22. crosshair.style.height = "30px";
  23. }
  24. }, 1000);