你正在訪問的內容是外部程式的映像位址,僅用於使用者加速訪問,本站無法保證其可靠性。當前的連結位址(單點即可複製)為 https://greasyfork.org.cn/zh-CN/scripts/458626-%E9%98%BF%E9%87%8C%E4%BA%91%E7%9B%98%E5%8A%A9%E6%89%8B/discussions/175464,源站連結 點此以跳轉

阿里云盘助手

支持生成文件下载链接、修改文件后缀,支持第三方播放器Artplayer(突破视频2分钟限制,长按倍速,选集,历史播放)

< 脚本 阿里云盘助手 的反馈

评价:好评 - 脚本运行良好

§
发布于:2023-03-28

老哥厉害,我提个feature,可不可以弄一个自动刷新下载链接的功能。有的文件夹里上百个文件,基本大部分都失败了,手动一个个点的话效率太低,可以做一个自动刷新,Math.floor(Math.random() * 4) + 5每5~8秒自动点一下。考虑开个github仓库么,大家也可以贡#贡#

§
发布于:2023-03-28
编辑于:2023-03-28

我写了段代码暂用,嘿嘿

(function() {
  function yunpan_refresh() {
    const el = Array.from(document.querySelectorAll('.el-link--danger'));
    if (el.length) {
      el[0].parentElement.parentElement.querySelector('.el-button--primary').click();
      yunpan_loop();
    } else {
      alert('all ok!')
    }
  }
  function yunpan_loop() {
    setTimeout(() => {
      yunpan_refresh();
    }, (Math.floor(Math.random() * 4) + 3)*1000)
  }
  yunpan_refresh();
})()
罗根大人作者
§
发布于:2023-06-07

我写了段代码暂用,嘿嘿

(function() {
  function yunpan_refresh() {
    const el = Array.from(document.querySelectorAll('.el-link--danger'));
    if (el.length) {
      el[0].parentElement.parentElement.querySelector('.el-button--primary').click();
      yunpan_loop();
    } else {
      alert('all ok!')
    }
  }
  function yunpan_loop() {
    setTimeout(() => {
      yunpan_refresh();
    }, (Math.floor(Math.random() * 4) + 3)*1000)
  }
  yunpan_refresh();
})()

代码已经开源了,你可以提交pr

发布留言

登录以发布留言。