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 Blueify
  7. // @match https://bloxd.io/
  8. // @icon https://www.google.com/s2/favicons?sz...
  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/attachment...)";
  18. crosshair.style.backgroundRepeat = "no-repeat";
  19. crosshair.style.backgroundSize = "contain";
  20. crosshair.style.width = "20px";
  21. crosshair.style.height = "20px";
  22. crosshair.style.opacity = "60%";
  23. }
  24. }, 1000);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址