Greasy Fork is available in English.

MooMoo.io | ANTI AD | BIG STORE | BIOM MAP | Press F8 for hide Manage Preferences

No ADS | big store | better map | Press F8 for hide Manage Preferences (this blue thing that sucks)

目前為 2021-03-18 提交的版本,檢視 最新版本

// ==UserScript==
// @name         MooMoo.io  |  ANTI AD  |  BIG STORE  |  BIOM MAP  |  Press F8 for hide Manage Preferences
// @namespace    https://greasyfork.org/de/users/740795-big-king
// @version      2
// @description  No ADS | big store | better map | Press F8 for hide Manage Preferences (this blue thing that sucks)
// @author       BiG_KinG
// @match        *://moomoo.io/*
// @match        *://dev.moomoo.io/
// @match        *://sandbox.moomoo.io/*
// ==/UserScript==

(function() {
    'use strict';

})();

document.querySelector("#pre-content-container").remove(); // anti ad
document.getElementById("storeHolder").style = "height: 1000px; width: 480px;"; // big store
$("#mapDisplay").css({background: `url('http://i.imgur.com/Qllo1mA.png')`}); //better map

// F8 for hide Manage Preferences
var int;
var isSpecToggled = false;
{
int = 0;
var val = setInterval(function(){
if(int === 100){
}
}, 10);

}


window.addEventListener('keydown', function(e) {
switch(e.keyCode){

case 119:
spec();
break;
 }
});
setInterval(() => window.follmoo && follmoo(), 10);
function spec() {
 if(isSpecToggled == false) {
  $("#ot-sdk-btn-floating").hide();
  isSpecToggled = !isSpecToggled;
 } else if(isSpecToggled == true){
    isSpecToggled = !isSpecToggled;
 }
}