Greasy Fork

来自缓存

Greasy Fork is available in English.

中关村去除高速下载

Remove the high speed download button from the download page

当前为 2021-07-30 提交的版本,查看 最新版本

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


    //*://????/*
})();