Greasy Fork

Spiegel Online: Adblock Wall entfernen

Entfernt die nervige Anti-Adblock-Meldung von SPON.

目前为 2017-10-23 提交的版本。查看 最新版本

// ==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
// ==/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; }'
  );
});