您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Prevents bonk.io from freezing
// ==UserScript== // @name Bonk.io Anti Freeze // @version 0.1 // @description Prevents bonk.io from freezing // @author UrsoTriangular // @match https://bonk.io/gameframe-release.html // @run-at document-start // @grant none // @namespace https://gf.qytechs.cn/users/984927 // ==/UserScript== const maximumTimeInsideLoop = 40; function inject(code) { // Variable name followed by [index] const VAR = '[$A-Za-z][\\w$_]{1,5}\\[\\d+\\]'; let replaced = false; // The loop we need to match is luckily the first one in the code, this migth change in a future update code = code.replace(new RegExp(`(${VAR});${VAR}=30;while\\(${VAR} > 1000 \/ ${VAR}\\)\\{`), function(whole, lastTime) { replaced = true; return `${whole}if (Date.now() - ${lastTime} > ${maximumTimeInsideLoop}) break;`; }); if (!replaced) { throw new Error("Repĺace failed"); } return code; } if (!window.bonkCodeInjectors) window.bonkCodeInjectors = []; window.bonkCodeInjectors.push(function AntiFreeze(code) { try { code = inject(code); console.log("[Anti Freeze] Injector run"); } catch (e) { console.error("[Anti Freeze] Injector error:", e); } return code; });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址