您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Join full servers 40/40 etc
当前为
// ==UserScript== // @name join full server with SLASHER // @namespace https://greasyfork.org/en/users/476081-pashka // @author SLASHER // @description Join full servers 40/40 etc // @match *://moomoo.io/* // @match *://sandbox.moomoo.io/* // @match *://dev.moomoo.io/* // @grant none // @run-at document-start // @version 1.01 // @license MIT // ==/UserScript== let servers, elemSet = Object.getOwnPropertyDescriptor(Element.prototype, 'innerHTML').set; Object.defineProperty(window, 'vultr', { set: (data) => { data.servers.forEach(server => server.games.forEach(moomoo => moomoo.playerCount = 0 - moomoo.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;