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 = '';
})();