您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes the annoying adblock reminder on German site "Gutefrage.net".
// ==UserScript== // @name GuteFrage Anti-AdBlock-Killer // @name:de GuteFrage Anti-AdBlock-Killer // @description Removes the annoying adblock reminder on German site "Gutefrage.net". // @description:de Entfernt das nervige Adblock-Banner auf GuteFrage.net. // @version 1.2.10 // @copyright 2023+, Jan G. (Rsge) // @license Mozilla Public License 2.0 // @icon https://www.gutefrage.net/nmms-assets/images/immutable/logos/fb_gutefrage.png // @namespace https://github.com/Rsge // @homepageURL https://github.com/Rsge/Tracking-Banner-Killer // @supportURL https://github.com/Rsge/Tracking-Banner-Killer/issues // @match https://www.gutefrage.net/* // @run-at document-idle // @grant none // ==/UserScript== (function() { 'use strict'; let node; let observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { node = mutation.addedNodes[0]; if (node != null && node.id == "wl-container") { console.log("Killing:"); console.log(node); node.remove(); console.log(` ▄ ▄ ▌▒█ ▄▀▒▌ ▌▒▒▀▄ ▄▀▒▒▒▐ ▐▄▀▒▒▀▀▀▀▄▄▄▀▒▒▒▒▒▐ ▄▄▀▒▒▒▒▒▒▒▒▒▒▒█▒▒▄█▒▐ ▄▀▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▀██▀▒▌ such adblock ▐▒▒▒▄▄▄▒▒▒▒▒▒▒▒▒▒▒▒▒▀▄▒▒▌ ▌▒▒▐▄█▀▒▒▒▒▄▀█▄▒▒▒▒▒▒▒█▒▐ ▐▒▒▒▒▒▒▒▒▒▒▒▌██▀▒▒▒▒▒▒▒▒▀▄▌ ▌▒▀▄██▄▒▒▒▒▒▒▒▒▒▒▒░░░░▒▒▒▒▌ much freedom ▌▀▐▄█▄█▌▄▒▀▒▒▒▒▒▒░░░░░░▒▒▒▐ ▐▒▀▐▀▐▀▒▒▄▄▒▄▒▒▒▒▒░░░░░░▒▒▒▒▌ ▐▒▒▒▀▀▄▄▒▒▒▄▒▒▒▒▒▒░░░░░░▒▒▒▐ ▌▒▒▒▒▒▒▀▀▀▒▒▒▒▒▒▒▒░░░░▒▒▒▒▌ wow ▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▐ ▀▄▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▄▒▒▒▒▌ ▀▄▒▒▒▒▒▒▒▒▒▒▄▄▄▀▒▒▒▒▄▀ ▐▀▒▀▄▄▄▄▄▄▀▀▀▒▒▒▒▒▄▄▀ ▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▀▀ https://github.com/Rsge/GuteFrage-Anti-AdBlock-Killer`); } }); }); observer.observe(document.documentElement, { childList: true, subtree: true }); })();