Skip to content

Instantly share code, notes, and snippets.

@xjxckk
Last active January 16, 2022 14:09
Show Gist options
  • Save xjxckk/97b133c0a92bd2dbb7aa9c992ed5a4c7 to your computer and use it in GitHub Desktop.
Save xjxckk/97b133c0a92bd2dbb7aa9c992ed5a4c7 to your computer and use it in GitHub Desktop.
Download all search results in Jackett
let links = document.querySelectorAll('.downloadcolumn > .downloadlink:last-of-type') // Gets magnet link if available
for (const link of links){
window.location = link.href
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment