好友
阅读权限10
听众
最后登录1970-1-1
|
本帖最后由 nctot 于 2024-3-7 09:13 编辑
----------------------------------2024.3.7 修改--------------------------------------------------------------
增加备注
s=0.1;//每个附件下载的时间间隔,可以自行修改,单位:秒
-------------------------------------------------------------------------------------------------步骤1.设置【下载内容保存位置】
步骤2.取消勾选【下载前询问每个文件的保存位置】
步骤3.打开【QQ邮箱>附件收藏>全部附件】
步骤4.按【F12】
步骤5.切换到【控制台 或CONSOLE】
步骤6.粘贴脚本并执行
PS:脚本会下载到最后一页,中途不想下载只能刷新结束.【本来想写成可以指定页数的,后续再看看吧】
第一次执行会 找不到附件,按下面方法操作【请大佬赐教】
1.按下 Ctrl+Shift+C
2.鼠标挪到第一个附件 上方的 【文件名】,然后点一下
3.重新执行下代码
[JavaScript] 纯文本查看 复制代码 down();
function down(){
s_down=5;
url="https://lib.sinaapp.com/js/jquery/1.12.4/jquery-1.12.4.min.js";
var script = document.createElement('script');
script.src = url;
document.getElementsByTagName('head')[0].appendChild(script);
console.log("QQ邮箱半自动批量下载");
console.log(s_down+"秒后开始下载...");
setTimeout(function(){
if($(".ico_attach.ico_ndownload").length==0){
console.log("没有找到附件,按下面方法操作");
console.log("1.按下 Ctrl+Shift+C");
console.log("2.鼠标挪到第一个附件 上方的 【文件名】,然后点一下");
console.log("3.重新执行下代码");
}else{
console.log("本页有"+$(".ico_attach.ico_ndownload").length+"个附件");
arrFileUrl=[];
//$(".ico_attach.ico_ndownload").click();
$(".filecolumn.ft_l_listItem").each(function(){
li=$(this);
url=li.attr("downurl");
name=li.attr("filename");
var j={"url":url,"name":name};
arrFileUrl.push(j);
});
$("#div_jindu").remove();
flag=0;
s=0.1;//每个附件下载的时间间隔,可以自行修改,单位:秒
$("body").before("<div id='div_jindu' style='background:white;position: fixed;z-index: 99999999;top: 21px;left: 234px;'></div>");
span="";
count=arrFileUrl.length;
line_count=10;
for(var i=0;i<count;i++){
if(i%line_count==0&&i!=0){
span+="<br>";
}
span+="<button style='height:25px;margin-right:5px;background:lightgrey;' class='file"+(i)+"'></button>";
}
$("#div_jindu").append(span);
fileUrl=arrFileUrl[flag].url;
fileName=arrFileUrl[flag].name;
downloadFile(fileUrl,fileName);
// Fetch the file using the fetch API
function downloadFile(fileUrl,fileName){
fetch(fileUrl)
.then(response => response.blob())
.then(blob => {
$("#div_jindu").find(".file"+flag).css("background","lightgreen");
//console.log(fileName+"下载完成");
var downloadLink = document.createElement('a');
var blobUrl = URL.createObjectURL(blob);
downloadLink.href = blobUrl;
downloadLink.download = fileName;
document.body.appendChild(downloadLink);
downloadLink.click();
document.body.removeChild(downloadLink);
URL.revokeObjectURL(blobUrl);
flag++;
if((flag)<arrFileUrl.length){
setTimeout(function(){
fileUrl=arrFileUrl[flag].url;
fileName=arrFileUrl[flag].name;
downloadFile(fileUrl,fileName);
},s*1000);
}else{
next=$("[class*=arrow_disable]").length;
if(next>0){
alert("全部下载完毕");
}else{
console.log("第"+$(".button_gray_l.page_count").text().split("/")[0]+"页下载完毕,3秒后继续下一页");
$(".ico_attach.arrow_right").click();
setTimeout(function(){
down();
},3000);
}
}
})
.catch(error => console.error('Error downloading the file:', error+fileName+"下载失败"));
}
}
},s_down*1000);
}
进度
日志提示
|
免费评分
-
查看全部评分
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|