您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script will automatically attempt to rejoin a full room. <sup>Based off of [UnmatchedBracket's script](https://gf.qytechs.cn/en/scripts/449381-auto-rejoin).</sup>
当前为
// ==UserScript== // @name Automatic Re-Join · Bonk.io // @namespace https://gf.qytechs.cn/en/users/962705 // @version 1.0.3 // @license GPL-3.0 // @description This script will automatically attempt to rejoin a full room. <sup>Based off of [UnmatchedBracket's script](https://gf.qytechs.cn/en/scripts/449381-auto-rejoin).</sup> // @author rrreddd // @match https://bonk.io/* // @run-at document-end // @grant none // ==/UserScript== var target = document.getElementById("sm_connectingWindow_text") let roompass = "" var observer = new MutationObserver(function(mutations) { if ((target.innerText.includes("room_full")) || (target.innerText.includes("no_entry_client"))) { roompass = document.getElementById("roomlistjoinpasswordtext").value setTimeout(()=>{ document.getElementById("sm_connectingWindowCancelButton").click() setTimeout(()=>{ document.getElementById("roomlistjoinbutton").click() setTimeout(()=>{ if (document.getElementById("roomlistjoinpasswordwindowcontainer").style.visibility == "visible") { document.getElementById("roomlistjoinpasswordtext").value = roompass setTimeout(()=>{document.getElementById("roomlistpassjoinbutton").click()}, 2000) } }, 1000) }, 1000) }, 1000) } }); observer.observe(target, { attributes: true, childList: true, characterData: true });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址