Greasy Fork is available in English.
block paywall on the economist
当前为
// ==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
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(".blog-post__text, .blog-post__image, .blog-post__comments { display: block !important; }");
})();