您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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 (_) {} }); });