Fandom Ad Remover

Removes top ads from Fandom that block your screen.

// ==UserScript==
// @name         Fandom Ad Remover
// @namespace    -
// @version      1
// @description  Removes top ads from Fandom that block your screen.
// @author       Plantt
// @match        https://*.fandom.com/*
// @icon         https://www.fandom.com/f2/assets/favicons/favicon-32x32.png?v=911c5c5b1b4cb66b20d97200726c1f13e56661f5
// @grant        none
// @license      Unlicense
// ==/UserScript==

addEventListener("load", () => {
    var int = setInterval(() => {
        try {
            document.getElementById("top_leaderboard").remove();
            document.querySelector(".top-ads-container").remove();
            document.querySelector(".bottom-ads-container").remove();
            clearInterval(int);
        }
        catch (_) {}
    });
});