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); });