// ==UserScript== // @name Wealth of Nations // @namespace http://tampermonkey.net/ // @version 0.4 // @description block paywall on the economist // @author thebspatrol // @match http*://economist.com/* // @match http*://*.economist.com/* // @grant GM_addStyle // @downloadURL none // ==/UserScript== (function() { 'use strict'; GM_addStyle(".blog-post__text, .blog-post__image, .blog-post__comments { display: block !important; }"); })();