// ==UserScript== // @name taz: remove paywall // @namespace https://greasyfork.org/en/users/8981-buzz // @description Removes taz.de paywall // @author buzz // @version 0.4 // @license GPLv2 // @match http://*.taz.de/* // @match https://*.taz.de/* // @grant GM_addStyle // @downloadURL none // ==/UserScript== /* jshint -W097 */ 'use strict'; (function() { GM_addStyle('#tzi-paywahl-fg, #tzi-paywahl-bg { display: none !important; }'); function fun() { var p = document.getElementById('tzi_paywall'); if (p) p.style.display = 'none'; else window.setTimeout(fun, 100); } window.setTimeout(fun, 100); })();