简书去广告

简书去除广告

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==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...
})();