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