-
-
Save galexrt/76c745b3317807b331376234353cbc5b to your computer and use it in GitHub Desktop.
Humble bundle book bundles - download all books at once
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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 = /(ZIP|MOBI|EPUB.*|PDF|PDF( ?\(H.\))?|CBZ|PRC|Download|Supplement)$/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['href'].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) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
So useful. Humble Bundle book interface is awful.
Thanks for saving me some time.