Custom Cursor Form KingOpPlayz

Custom Bloxd Cursor

  1. // ==UserScript==
  2. // @name Custom Cursor Form KingOpPlayz
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Custom Bloxd Cursor
  6. // @author You
  7. // @match https://bloxd.io/
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=bloxd.io
  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://lh3.googleusercontent.com/mfdjL6r1en6mWI3QVMnBbcSX-7QpgBE5EyXo0YbK6299QSJsi58GkfecyL0W7yYljK37vV6Mk7wD69QNdp8LiNw=s400)";
  18. crosshair.style.backgroundRepeat = "no-repeat";
  19. crosshair.style.backgroundSize = "contain";
  20. crosshair.style.width = "30px";
  21. crosshair.style.height = "30px";
  22. }
  23. }, 1000);