Greasy Fork is available in English.

廖雪峰官网去广告

去掉廖雪峰官网【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 = '';
})();