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)

À partir de 2021-04-02. Voir la dernière version.

// ==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==

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

document.getElementById('gameName').innerHTML = 'MooMoo.IO';
document.getElementById('gameName').style.color = "#fe1414";

document.getElementById('loadingText').innerHTML = ' Your Game is loading... ';
document.getElementById('loadingText').style.color = "#f76f16";

// F8 for hide Manage Preferences
var isSpecToggled = false;

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){
  $("#ot-sdk-btn-floating").show();
    isSpecToggled = !isSpecToggled;
 }
}