1
tedd 2012-11-24 14:20:35 +08:00
我用Linkclump这ext,右键全选框中所有链接就是复制其url
|
3
iyuyue 2012-11-24 14:42:57 +08:00
|
4
lentrody 2012-11-24 14:55:54 +08:00
这样? 打开迅雷后应该能导出下载链接列表吧
|
7
cedricporter 2014-06-16 15:16:02 +08:00
打开chrome的console。输入
``` links = "" $("a.file_name").each(function(idx,obj) {links += $(obj).attr("href") + "\n"}) copy(links) ``` 搞定。 |