Greasy Fork is available in English.

移除菜鸟教程广告

移除菜鸟教程悬浮按钮、广告、及右边导航菜单。

// ==UserScript==
// @name         移除菜鸟教程广告
// @namespace    https://github.com/hayatesa
// @version      2.2
// @description  移除菜鸟教程悬浮按钮、广告、及右边导航菜单。
// @author       溶酶菌.
// @match        http://www.runoob.com/*.html
// @grant        none
// @require      https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    window.onload = resize;
    window.onresize = resize;

    function resize() {
        $('.middle-column').css('width', document.body.clientWidth > 769 ? '84%' : '100%').css('margin-right', '0');
    };

     function removeEls() {
        let selectors = ['.ad-box', '.ad-box-large', '.feedback-btn', '.fixed-btn'];
        selectors.forEach(slt => {
            $(slt).remove();
        });
    }
    resize();
    removeEls();

})();