您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Remove the high speed download button from the download page
当前为
// ==UserScript== // @name 中关村去除高速下载 // @namespace http://tampermonkey.net/ // @include https://softdown.fengcv.cn/ // @version 0.1.1 // @description Remove the high speed download button from the download page // @author Jason // @match *://softdown.fengcv.cn/* // @icon https://icon.zol-img.com.cn/mainpage/2019logo/logo-fengcv.png // @grant none // ==/UserScript== // @updateURL https://gitee.com/XiaoLang147258/oil-monkey-script/raw/master/removeGaosu.js (function() { //*://softdown.fengcv.cn/* window.setTimeout(()=>{document.getElementsByClassName("fast-down-btn")[0].remove()},500); document.getElementsByClassName("box-top-xiazai")[0].remove(); document.getElementsByClassName("recommend-soft-box")[0].remove(); document.getElementsByClassName("down-right")[0].remove(); document.getElementsByClassName("shandian-software")[0].remove(); document.getElementsByClassName("base-right-pic")[0].remove(); document.getElementById("zolGlobalFooter").remove(); document.getElementById("nowDown").remove(); //*://????/* })();