Greasy Fork is available in English.
have less effect on 60hz+pc
当前为
// ==UserScript==
// @name FPS booster
// @author suzieekiddi
// @description have less effect on 60hz+pc
// @icon https://sploop.io/img/ui/favicon.png
// @version 0.5
// @match *://sploop.io/*
// @run-at document-start
// @grant none
// @license MIT
// @namespace http://greasyfork.icu/users/3183181
// ==/UserScript==
(function() {
'use strict';
requestAnimationFrame = (a) => setTimeout(a, 1e3/1000)
})();