Skip to content

Instantly share code, notes, and snippets.

@kfatehi
Forked from graymouser/hb_all_books_dl.js
Last active March 7, 2021 08:07
Show Gist options
  • Star 42 You must be signed in to star a gist
  • Fork 23 You must be signed in to fork a gist
  • Save kfatehi/e7642697dcda5f948854bfdebe934cd3 to your computer and use it in GitHub Desktop.
Save kfatehi/e7642697dcda5f948854bfdebe934cd3 to your computer and use it in GitHub Desktop.
Humble bundle book bundles - download all books at once
/*
After purchasing a humble book bundle, go to your download page for that bundle.
Open a console window for the page and paste in the below javascript
this fork downloads all formats and does so without using jquery (since that didnt work for me)
note that if you are in chrome, chrome will not download the pdfs for you by default, to fix this
type “about:plugins” in the address bar and disable chrome's pdf viewer
*/
var pattern = /(MOBI|EPUB|PDF)$/i;
var nodes = document.getElementsByTagName('a');
for (i in nodes) {
var a = nodes[i];
if (a && a.text && pattern.test(a.text.trim())) {
download(a.attributes['data-web'].value, i);
}
}
function download(url, i) {
var iframe = document.createElement('iframe');
iframe.id = "dl_iframe_" + i;
iframe.style.display = "none";
document.getElementsByTagName('body')[0].appendChild(iframe);
iframe.src = url;
console.log('iframe set to', url)
}
@4mp3d
Copy link

4mp3d commented Sep 27, 2017

Doesn't like: download(a.attributes['data-web'].value, i);

Uncaught TypeError: Cannot read property 'value' of undefined at <anonymous>:6:42

@Oskube
Copy link

Oskube commented Oct 17, 2017

On my Firefox I got an error: TypeError: a.attributes['data-web'] is undefined
So I changed the line 15:

download(a.attributes['data-web'].value, i);

To:

download(a.attributes['href'].value, i);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment