Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am markthewolf90 on github.
  • I am wynterfoxx (https://keybase.io/wynterfoxx) on keybase.
  • I have a public key ASBBUYLdeC-pEnlRcOe0yB90wUAZ9IZoCT3GCMJg9zK4wgo

To claim this, I am signing this object:

@WynterFoxx
WynterFoxx / humble_download_trove.js
Last active September 9, 2018 02:16 — forked from dob9601/humble_download_trove.js
Download the whole of the humble trove (if you have subscribed to the humble trove)
let buttons = document.getElementsByClassName("js-download-button");
let i = 0;
let interval = setInterval(() => {
if(i > buttons.length)
{
clearInterval(interval);
}
else{
buttons[i].click();
console.log(++i)