Skip to content

Instantly share code, notes, and snippets.

@gyk001
Created November 18, 2013 13:42
Show Gist options
  • Save gyk001/7527953 to your computer and use it in GitHub Desktop.
Save gyk001/7527953 to your computer and use it in GitHub Desktop.
获取verycd上所有的ed2k下载链接, command+option+i ,粘贴到console里,回车,弹出框里就是所有链接,直接粘到迅雷里OK
urls = '';
$.each($('a[href^=ed2k]'),function(i,aa){
urls = urls +$(aa).attr('href')+'\n';
});
alert(urls);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment