Skip to content

Instantly share code, notes, and snippets.

@cesardv
Forked from graymouser/hb_all_books_dl.js
Created August 3, 2017 04:54
Show Gist options
  • Save cesardv/45ef0ab5f52d21b3313268c14f156481 to your computer and use it in GitHub Desktop.
Save cesardv/45ef0ab5f52d21b3313268c14f156481 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
*/
$('a').each(function(i){
if ($.trim($(this).text()) == 'MOBI') {
$('body').append('<iframe id="dl_iframe_'+i+'" style="display:none;">');
document.getElementById('dl_iframe_'+i).src = $(this).data('web');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment