Greasy Fork

来自缓存

Greasy Fork is available in English.

Wealth of Nations

block paywall on the economist

当前为 2017-08-11 提交的版本,查看 最新版本

// ==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; }");
})();