Skip to content

Instantly share code, notes, and snippets.

@riledhel
Last active September 9, 2023 12:00
Show Gist options
  • Save riledhel/d057ea8ab07e218ea024 to your computer and use it in GitHub Desktop.
Save riledhel/d057ea8ab07e218ea024 to your computer and use it in GitHub Desktop.
Download first result in kickass torrents, bookmarklet for firefox
javascript:(function(){
var re = new RegExp("^magnet\:\?");
var row = document.getElementsByClassName("odd")[0];
var links = row.getElementsByTagName('a');
for (i = 0; i < links.length; i++) {
if (re.test(links[i])) {
window.location = links[i];
return;
}
}
void 0;})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment