Greasy Fork is available in English.

MooMoo.io Ad Removal (Work In Progress)

Removes ads in MooMoo.io. Fixes bugs that AdBlocker won't catch. This script is not backdoored and will never be. Please give feedback and tell us if this works.

Устаревшая версия на 05.08.2020. Перейти к последней версии.

// ==UserScript==
// @name         MooMoo.io Ad Removal (Work In Progress)
// @version      v1.4
// @description  Removes ads in MooMoo.io. Fixes bugs that AdBlocker won't catch. This script is not backdoored and will never be. Please give feedback and tell us if this works.
// @author       Morpehus and Ivan
// @match        *://*.moomoo.io/*
// @namespace    https://www.youtube.com/ivansucksatgaming
// @namespace    https://www.youtube.com/channel/UCKYi6q-dq2yiNdEHPuJRMxw
// ==/UserScript==
document.querySelectorAll("#adCard, #pre-content-container").forEach(function(a){
a.remove();
});
document.getElementsByClassName("menuCard")[4].remove();
document.getElementsByClassName("menuCard")[2].remove();
window.devicePixelRatio = 0.8;
for (var i; i < document.getElementByTagName("iframe").length; i++) {
document.getElementByTagName("iframe")[i].remove()
}
$("#moomooio_728x90_home").parent().css({display: "none"});