Created
August 30, 2018 17:09
-
-
Save Gmousse/4b751408a606acadcdeb89edd82732eb to your computer and use it in GitHub Desktop.
Download all humble bundle links
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
/** | |
* Download all Humble bundle items of a specific type (eg: EPUB). | |
* @param {String} innerText The tag of the items to download. | |
*/ | |
function downloadAllBundleItems(innerText) { | |
return Array.from(document.getElementsByTagName('a')).filter(x => x.innerText == innerText).forEach(x => window.open(x.href)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment