Skip to content

Instantly share code, notes, and snippets.

@LabiKyo
Last active December 14, 2015 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LabiKyo/5063742 to your computer and use it in GitHub Desktop.
Save LabiKyo/5063742 to your computer and use it in GitHub Desktop.
Script for get a list of thunder download links on bt.ktxp.com's search page. Separated by EOL.
body = $('a.quick-down')
.map(function (index, elem) {
return 'http://bt.ktxp.com' + $(elem).attr('href');
})
.toArray()
.join('<br>');
window.open('data:text/html,<body contenteditable="true">' + body + '</body>');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment