天翼云盘恢复下载按钮
当前为
// ==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")
};
})();