Skip to content

Instantly share code, notes, and snippets.

@LabiKyo
Last active December 12, 2015 00:28
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/4683834 to your computer and use it in GitHub Desktop.
Save LabiKyo/4683834 to your computer and use it in GitHub Desktop.
Script for get a list of thunder download links on YYeTs.com's download page. Separated by EOL.
body = $('#tabs .box_1 ul:visible input:checked')
.parent()
.find('a:contains(迅)')
.map(function (index, elem) {
return $(elem).attr('bbnxuxof');
})
.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