您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Allows to connect to the full server
当前为
- // ==UserScript==
- // @name Moomoo.io Force connect
- // @author Murka
- // @description Allows to connect to the full server
- // @icon https://moomoo.io/img/favicon.png?v=1
- // @version 0.1
- // @match *://moomoo.io/*
- // @match *://*.moomoo.io/*
- // @run-at document-start
- // @grant none
- // @license MIT
- // @namespace https://greasyfork.org/users/919633
- // ==/UserScript==
- /* jshint esversion:6 */
- /*
- Author: Murka
- Github: https://github.com/Murka007
- Discord: https://discord.gg/sG9cyfGPj5
- Greasyfork: https://greasyfork.org/en/users/919633
- */
- (function() {
- "use strict";
- const log = console.log;
- function createHook(target, prop, callback) {
- const symbol = Symbol(prop);
- Object.defineProperty(target, prop, {
- get() {
- return this[symbol];
- },
- set(value) {
- callback(this, symbol, value);
- },
- configurable: true
- })
- }
- createHook(Object.prototype, "maxPlayers", function(that, symbol, value) {
- delete Object.prototype.maxPlayers;
- that.maxPlayers = value + 10;
- })
- })();