Created
November 1, 2020 14:13
-
-
Save virgiliu/eefbadef4de9d2ecb2e01020ae471892 to your computer and use it in GitHub Desktop.
Gumroad bulk download
This file contains hidden or 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
| // Run this in the content download page and it will trigger download for everything | |
| var sleep = (milliseconds) => { | |
| return new Promise(resolve => setTimeout(resolve, milliseconds)) | |
| } | |
| var waitTime = 1500; //ms | |
| var x = $( "button:contains('Download')" ); | |
| for(var i = 0; i < x.length ; i++) | |
| { | |
| (function(idx) { | |
| // Wait needed because browser blocks network calls if you make too many too fast | |
| sleep(i * waitTime).then(() => { | |
| x[idx].click(); | |
| }); | |
| })(i) | |
| } | |
Something updated that worked for me in 02.2026.
Just copy & paste into your browser console while being on the Gurmoad downloads page
worked like a charm thanks!(08/03/2026)
I am a bit puzzled how there is no bulk zip download available on gumroad for each Bundle of purchased Files
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Something updated that worked for me in 02.2026.
Just copy & paste into your browser console while being on the Gurmoad downloads page