Greasy Fork is available in English.
去掉廖雪峰官网【www.liaoxuefeng.com】上的广告
// ==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 = '';
})();