Greasy Fork is available in English.

简书去广告

简书去除广告

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         简书去广告
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  简书去除广告
// @author       水鬼派克
// @match        *://www.jianshu.com/*
// @icon         data:image/gif;base64,
// @grant       unsafeWindow
// @grant       GM_addStyle
// @run-at       document-end
// @license MIT
// ==/UserScript==
(function() {
    'use strict';
    GM_addStyle('.a-d-block{display:none !important}')
    GM_addStyle('.inner--w8Qlv{display:none !important}')
    GM_addStyle('.f9EQvgbc{display:none !important}')
    // Your code here...
})();