 
        Greasy Fork is available in English.
Automatically attempts to rejoin when the room is full.
当前为 
// ==UserScript==
// @name         Auto Rejoin
// @namespace    http://greasyfork.icu/users/945115
// @version      0.2
// @license      GPL-3.0
// @description  Automatically attempts to rejoin when the room is full.
// @author       left paren
// @match        https://bonk.io/gameframe-release.html
// @run-at       document-end
// @grant        none
// ==/UserScript==
var target = document.getElementById("sm_connectingWindow_text")
var observer = new MutationObserver(function(mutations) {
    if (/room_full|no_client_entry/.test(target.innerText)) {
        document.getElementById("sm_connectingWindowCancelButton").click()
        document.getElementById("roomlistjoinbutton").click()
    }
});
observer.observe(target, {
    attributes:    true,
    childList:     true,
    characterData: true
});