Greasy Fork

Greasy Fork is available in English.

天翼云盘直接下载

天翼云盘去除其登录弹框,点击即下载

目前为 2017-08-19 提交的版本,查看 最新版本

// ==UserScript==
// @name         天翼云盘直接下载
// @version      0.11
// @icon         http://cloud.189.cn/logo.ico
// @namespace     http://jackxhe.cn
// @description  天翼云盘去除其登录弹框,点击即下载
// @author       JackXhE
// @include      *//cloud.189.cn/t/*
// @match         *//cloud.189.cn/t/*
// ==/UserScript==

(function() {
    document.getElementsByClassName("tips-save-box")[0].style.display="none";
    var downBtn = document.getElementsByClassName("btn-download")[0];
    document.getElementsByClassName("save-as-link")[0].setAttribute("class","btn btn-download save-as-link");
    downBtn.setAttribute("class","btn btn-save-as");
    downBtn.href = this.downloadUrl+"&name="+this.fileName;
    downBtn.innerHTML = "直接下载";
})();