Greasy Fork is available in English.

MooMoo.io Ad Removal (Work In Progress)

Removes ads in MooMoo.io

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

// ==UserScript==
// @name         MooMoo.io Ad Removal (Work In Progress)
// @version      0.1
// @description  Removes ads in MooMoo.io
// @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();
$("#moomooio_728x90_home").parent().css({display: "none"});