Greasy Fork is available in English.
Join full servers in MooMoo.io
// ==UserScript== // @name Force Connect (working) // @author Nuro // @description Join full servers in MooMoo.io // @match *://moomoo.io/* // @match *://sandbox.moomoo.io/* // @match *://dev.moomoo.io/* // @grant none // @run-at document-start // @version 0.0.1.20200602054104 // @namespace https://greasyfork.org/users/577135 // ==/UserScript== let servers, elemSet = Object.getOwnPropertyDescriptor(Element.prototype, 'innerHTML').set; Object.defineProperty(window, 'vultr', { set: (data) => { data.servers.forEach(server => server.games.forEach(game => game.playerCount = 0 - game.playerCount)); servers = data }, get: () => servers }); Object.defineProperty(Element.prototype, 'innerHTML', { set(data) { this.id === 'serverBrowser' && (data = data.replace(/-(\d)/g, '$1')) return elemSet.call(this, data); } }); localStorage.moofoll = !0;