您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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(); })();