🏠 Home 

廖雪峰官网去广告

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


Install this script?
Author's suggested script

You may also like StackEdit PicToUrl.


Install this script
// ==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 = '';
})();