Removes taz.de paywall
当前为
// ==UserScript==
// @name taz: remove paywall
// @namespace https://greasyfork.org/en/users/8981-buzz
// @description Removes taz.de paywall
// @author buzz
// @version 0.1
// @license GPLv2
// @match http://*.taz/*
// @match https://*.taz/*
// @grant 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);
})();