Custom Cursor For Courrupted From YT

Custom Bloxd Cursor

질문, 리뷰하거나, 이 스크립트를 신고하세요.
  1. // ==UserScript==
  2. // @name Custom Cursor For Courrupted From YT
  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://i.imgur.com/tQ1cD1I.png)";
  18. crosshair.style.backgroundRepeat = "no-repeat";
  19. crosshair.style.backgroundSize = "contain";
  20. crosshair.style.width = "30px";
  21. crosshair.style.height = "30px";
  22. }
  23. }, 1000);