NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name DN.se paywall unlocker // @namespace http://tampermonkey.net/ // @version 1.0 // @description Dn.se paywall unlocker // @author ChoFlojT // @match *.dn.se/* // @grant none // ==/UserScript== Element.prototype.remove = function() { this.parentElement.removeChild(this); }; NodeList.prototype.remove = HTMLCollection.prototype.remove = function() { for(var i = this.length - 1; i >= 0; i--) { if(this[i] && this[i].parentElement) { this[i].parentElement.removeChild(this[i]); } } }; var scripts = document.getElementsByTagName('script'); for (var i = 0; i < scripts.length; i++) { if (scripts[i].src.indexOf('paywall') > -1) { scripts[i].remove(); } } //document.getElementsByTagName('script').remove();