Bonk.io - Map Counter

Replaces "Level Select" with Map Counter

// ==UserScript==
// @name         Bonk.io - Map Counter
// @namespace    http://tampermonkey.net/
// @version      69
// @description  Replaces "Level Select" with Map Counter
// @author       Silly One
// @match        https://*.bonk.io/*
// @match        https://*.bonkisback.io/*
// @grant        none
// @license      MIT
// ==/UserScript==

const balls=document.getElementById('maploadwindowtopbar'),o=new MutationObserver(()=>balls.innerText=`${document.querySelectorAll('.maploadwindowmapdiv').length} Maps`);o.observe(document.getElementById('maploadwindowmapscontainer'),{subtree:1,childList:1});