您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Entfernt das nervige Adblock-Banner auf GuteFrage.net.
当前为
// ==UserScript== // @name GuteFrage Anti-AdBlock-Killer // @description Entfernt das nervige Adblock-Banner auf GuteFrage.net. // @description:en Removes the annoying adblock-reminder on German site "Gutefrage.net". // @version 1.2.0 // @author Rsge // @copyright 2021+, 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/GuteFrage-Anti-AdBlock-Killer // @homepageURL https://github.com/Rsge/GuteFrage-Anti-AdBlock-Killer // @supportURL https://github.com/Rsge/GuteFrage-Anti-AdBlock-Killer/issues // @match https://www.gutefrage.net/* // @grant none // ==/UserScript== (function() { 'use strict'; var node var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { node = mutation.addedNodes[0]; //console.log(node); if (mutation.addedNodes[0] != null && node.id == "wl-container") { 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 }); })();