您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Entfernt die nervige Anti-Adblock-Meldung von SPON.
// ==UserScript== // @name Spiegel Online: Adblock Wall entfernen // @namespace https://greasyfork.org/en/users/8981-buzz // @description Entfernt die nervige Anti-Adblock-Meldung von SPON. // @author buzz // @locale de // @require https://code.jquery.com/jquery-2.2.0.min.js // @version 0.3 // @license GPLv2 // @match http://www.spiegel.de/* // @noframes // ==/UserScript== /* jshint -W097 */ /*global $: false */ 'use strict'; $(function() { var h, s; h = document.getElementsByTagName('head')[0]; if (!h) { return; } s = document.createElement('style'); s.type = 'text/css'; s.innerHTML = '.ua-detected { display: none !important; }' + '#wrapper-content { opacity: 1.0 !important; filter: none !important; pointer-events: auto !important; }'; h.appendChild(s); });