MooMoo.io Ad Removal (Work In Progress)

Removes ads in MooMoo.io

Verze ze dne 01. 08. 2020. Zobrazit nejnovější verzi.

// ==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"});