Skip to content

Commit f3d9bb9

Browse files
committed
修复 分享页[点击直接下载文件]失效的问题
1 parent b9342ff commit f3d9bb9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Lanzou-Enhanced.user.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ==UserScript==
22
// @name 蓝奏云网盘增强
3-
// @version 1.5.6
3+
// @version 1.5.7
44
// @author X.I.U
55
// @description 文件排序、刷新不回根目录、快捷返回上一级(右键网页空白处)、后退返回上一级、右键文件显示菜单、点击直接下载文件、点击空白进入目录、自动显示更多文件、一键复制所有分享链接、自定义分享链接域名、自动打开/复制分享链接、带密码的分享链接自动输密码、拖入文件自动显示上传框、输入密码后回车确认、优化编辑框初始大小
66
// @match *://lanzou.com/u
@@ -347,10 +347,10 @@
347347
if (iframe) { // 只有找到 iframe 框架时才会继续运行脚本
348348
iframe = iframe.contentWindow;
349349
let timer = setInterval(function(){
350-
if (iframe.document.querySelector('.load>[href]')) {
351-
//iframe.document.querySelector('.load>a[href]').target = '_top'
352-
//iframe.document.querySelector('.load>a[href]').click();
353-
GM_openInTab(iframe.document.querySelector('.load>a[href]').href, {active: false, insert: true, setParent: false}); // 后台打开
350+
if (iframe.document.querySelector('.load [href]')) {
351+
//iframe.document.querySelector('.load a[href]').target = '_top'
352+
//iframe.document.querySelector('.load a[href]').click();
353+
GM_openInTab(iframe.document.querySelector('.load a[href]').href, {active: false, insert: true, setParent: false}); // 后台打开
354354
clearInterval(timer);
355355
// 关闭该后台标签页
356356
if (GM_info.scriptHandler === 'Violentmonkey') { // Violentmonkey 需要延迟一会儿

0 commit comments

Comments
 (0)