// ==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.2 // @license GPLv2 // @match http://www.spiegel.de/* // @grant GM_addStyle // @noframes // @downloadURL none // ==/UserScript== /* jshint -W097 */ /*global $: false, GM_addStyle: false */ 'use strict'; $(function() { GM_addStyle( '.ua-detected { display: none !important; }' + '#wrapper-content { opacity: 1.0 !important; filter: none !important; pointer-events: auto !important; }' ); });