// ==UserScript==
// @name Siam蓝奏云批量下载
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 自用,需要弹窗等权限以及微调代码,不会用不要下载
// @author Siam
// @match *://*.lanzoux.com/*
// @match *://*.lanzous.com/*
// @match *://*.lanzoui.com/*
// @grant none
// @require http://code.jquery.com/jquery-3.4.1.min.js
// ==/UserScript==
(function() {
'use strict';
function siam(){
if ($('.txt').length === 0){
var a=$(".rets")[0]
var a2=document.createElement("a");
if (!!a){
a.appendChild(a2)
}
a2.innerHTML=' !!!!!!!点击此处将此页文档全部下载!!!!!!'
a2.onclick=function(){
var nu=$('#infos').find('a').length
for(let i=0; i<nu; i++){
setTimeout(function(){$('#infos').find('a')[i].click() }, i*2500)
}
}
}else{
$('.txt')[0].click();
setTimeout(function(){
window.parent.close()
},1000)
}
}
setTimeout(siam,1500)
})();
扫描二维码,分享此文章