// ==UserScript== // @name Auto Rejoin // @namespace https://greasyfork.org/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 // @downloadURL 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 });