廖雪峰官网去广告

去掉廖雪峰官网【www.liaoxuefeng.com】上的广告

安裝腳本?
作者推薦腳本

您可能也會喜歡 StackEdit PicToUrl

安裝腳本
// ==UserScript==
// @name         廖雪峰官网去广告
// @namespace    a23187.cn
// @version      1.0.2
// @description  去掉廖雪峰官网【www.liaoxuefeng.com】上的广告
// @author       A23187
// @match        https://www.liaoxuefeng.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    document.getElementById('sponsor-b').outerHTML = '';
    document.getElementById('x-content-bottom').outerHTML = '';
})();