// ==UserScript== // @name 天翼云盘直接下载 // @icon http://cloud.189.cn/logo.ico // @version 0.12 // @namespace http://jackxhe.cn // @description 天翼云盘去除其登录弹框,点击即下载 // @author JackXhE // @include *//cloud.189.cn/t/* // @include *//m.cloud.189.cn/t/* // @downloadURL none // ==/UserScript== (function() { if(document.getElementsByClassName("btn-download")[0]){ 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.innerText = '直接下载'; }else{ document.getElementById('J_CloudWapBanner').remove(); a = document.getElementsByClassName('J_Download')[0]; a.classList = ''; a.style.color = '#40a8e4'; a.href = this.longDownloadUrl; a.childNodes[1].nodeValue='直接下载'; a.download = document.getElementById('fileName').innerText; } })();