Greasy Fork is available in English.

天翼云盘

天翼云盘恢复下载按钮

您查看的为 2021-03-24 提交的版本。查看 最新版本

// ==UserScript==
// @name         天翼云盘
// @icon         http://cloud.189.cn/logo.ico
// @version      0.1
// @namespace    http://astwy.com
// @description  天翼云盘恢复下载按钮
// @author       艾斯托维亚
// @include      *//cloud.189.cn/t/*
// ==/UserScript==

(function() {
    "use strict";
    window.onload =function () {
        for (var t = document.getElementsByTagName("a"), e = 0; e < t.length; e++) "btn btn-download download-link disable" === t[e].getAttribute("class") && t[e].setAttribute("class", "btn btn-download download-link")
    };
})();