Skip to content

Instantly share code, notes, and snippets.

@jessb321
Forked from dob9601/humble_download_trove.js
Created June 20, 2018 01:46
Show Gist options
  • Save jessb321/96095b23195edd635788262f0ec6f4fa to your computer and use it in GitHub Desktop.
Save jessb321/96095b23195edd635788262f0ec6f4fa to your computer and use it in GitHub Desktop.
Download the whole of the humble trove (if you have subscribed to the humble trove)
var buttons = $( ".js-download-button" ).click()
var i=0
setInterval(function() {
buttons[i].click()
console.log('Downloading: '+buttons[i].parentNode.parentNode.parentNode.children[0].children[0].children[0].innerHTML)
i++
}, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment