迅雷快传显示全部下载链接

文件列表下面插入一个文本框,显示所有文件的下载链接(包括没勾选的)

  1. // ==UserScript==
  2. // @name 迅雷快传显示全部下载链接
  3. // @namespace https://gf.qytechs.cn/zh-CN/scripts/8399
  4. // @author 天涯倦客
  5. // @supportURL http://t.qq.com/HeartBlade
  6. // @description 文件列表下面插入一个文本框,显示所有文件的下载链接(包括没勾选的)
  7. // @include http://kuai.xunlei.com/d/*
  8. // @version 1.0
  9. // @grant none
  10. // ==/UserScript==
  11. (function(){
  12. var urls = '',i;
  13. var fname=document.querySelectorAll(".file_name");
  14. var flength=fname.length;
  15. for (i=0;i<flength;i++){
  16. urls+=fname[i].href+'\n';
  17. }
  18. var txt=document.createElement("textarea");
  19. txt.value=urls;
  20. txt.id="down_links";
  21. txt.style="width:677px;height:300px;";
  22. document.querySelectorAll(".file_w")[0].appendChild(txt);
  23. txt.focus();
  24. txt.select();
  25. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址