AAAA Mod

Hi

  1. // ==UserScript==
  2. // @name AAAA Mod
  3. // @namespace -
  4. // @version 1.0
  5. // @description Hi
  6. // @author xXGuiXx YT
  7. // @match *://moomoo.io/*
  8. // @match *://dev.moomoo.io/*
  9. // @match *://sandbox.moomoo.io/*
  10. // @license Nothing
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. let hue = 0;
  15.  
  16. let replaceInterval = setInterval(() => {
  17. if (CanvasRenderingContext2D.prototype.roundRect) {
  18. CanvasRenderingContext2D.prototype.roundRect = ((oldFunc) => function() { if (this.fillStyle == "#8ecc51") this.fillStyle = `hsl(${hue}, 100%, 50%)`; return oldFunc.call(this, ...arguments); })(CanvasRenderingContext2D.prototype.roundRect);
  19. clearInterval(replaceInterval);
  20. }}, 10);
  21.  
  22. function changeHue() {
  23. hue += Math.random() * 3;
  24. }
  25.  
  26. setInterval(changeHue, 10);

QingJ © 2025

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