Thanks for the simple but really effective script! Would be nice if you could add a Variable "subFolder" for putting alls downloads in a subfolder.
I added this lines (but tampermonkey want to update allways and overwrites it):
Line61 changed to: GM_download(files[i].download, subFolder + "/" + name + "/" + files[i].filename); Line67 changed to: Notiflix.Report.Success( 'Success', "All downloaded to /Downloads/" + subFolder + "/" +name+" folder.", 'OK' ); and after Line15 added: var subFolder = "ebooks" // SubFolder. Leave empty to if you don't want it.
Thanks for the simple but really effective script!
Would be nice if you could add a Variable "subFolder" for putting alls downloads in a subfolder.
I added this lines (but tampermonkey want to update allways and overwrites it):
Line61 changed to: GM_download(files[i].download, subFolder + "/" + name + "/" + files[i].filename);
Line67 changed to: Notiflix.Report.Success( 'Success', "All downloaded to /Downloads/" + subFolder + "/" +name+" folder.", 'OK' );
and after Line15 added: var subFolder = "ebooks" // SubFolder. Leave empty to if you don't want it.
Thx!