// ==UserScript== // @name DN Reader // @namespace http://dn.se/ // @version 0.1 // @description Tear down this wall. // @author olmen // @match https://www.dn.se/* // @grant none // ==/UserScript== (function() { 'use strict'; $(window).load(function () { $('.article__premium-content').show(); $('.js-paywall').hide(); $('.article__lead').css({ 'overflow': 'auto', 'position': 'inherit', 'max-height': 'none' }); }); })();