您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
If you disable AdBlock on spiegel.de, the website may still display a nag-message. This scripts will prevent said popup and content blur.
当前为
// ==UserScript== // @name Spiegel Anti-AntiAdBlock // @namespace http://tampermonkey.net/ // @version 0.1 // @description If you disable AdBlock on spiegel.de, the website may still display a nag-message. This scripts will prevent said popup and content blur. // @author Beat Luginbühl // @match http://www.spiegel.de/ // @grant none // ==/UserScript== (function() { 'use strict'; setCookie('abbActivated', false, 365); while (true) { var popup = getPopUp(); if ((popup !== null || popup !== 'undefined') && popup.style !== null) { popup.style.display = 'none'; break; } } function getPopUp() { var popup = document.getElementsByClassName('ua-detected ua-webkit'); if (popup.length > 0 && popup[0] !== 'undefined') { return popup[0]; } return null; } /** * https://www.w3schools.com/js/js_cookies.asp */ function setCookie(cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); var expires = "expires="+d.toUTCString(); document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/"; } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址