FPS Booster [Sploop.io, Moomoo.io and other] (if you want me to add sites, dm me)

Improve MooMoo.io FPS performance.(if you want me to add sites, dm me)

  1. // ==UserScript==
  2. // @name FPS Booster [Sploop.io, Moomoo.io and other] (if you want me to add sites, dm me)
  3. // @namespace https://gf.qytechs.cn/en/users/1064285-vcrazy-gaming
  4. // @version 1.0
  5. // @description Improve MooMoo.io FPS performance.(if you want me to add sites, dm me)
  6. // @author _VcrazY_
  7. // @match *://*.moomoo.io/*
  8. // @match *://*.sploop.io/*
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function () {
  14. 'use strict';
  15.  
  16. let animationFrameId;
  17. const startAnimationFrame = (previousTimestamp = performance.now(), remainingFrameTime = 0) => {
  18. let timeElapsedSinceLastFrame = performance.now() - previousTimestamp,
  19. targetFrameInterval = 16.67 - timeElapsedSinceLastFrame + remainingFrameTime,
  20. frameDelay = targetFrameInterval - (0 | targetFrameInterval);
  21. animationFrameId = requestAnimationFrame(() => startAnimationFrame(previousTimestamp, frameDelay));
  22. };
  23. startAnimationFrame();
  24. window.addEventListener("beforeunload", () => {
  25. animationFrameId && cancelAnimationFrame(animationFrameId);
  26. });
  27.  
  28. })();

QingJ © 2025

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