// ==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 https://greasyfork.org/users/3183181 // @downloadURL none // ==/UserScript== (function() { 'use strict'; requestAnimationFrame = (a) => setTimeout(a, 1e3/1000) })();