8muses Downloader

Download from 8muses.com

< Feedback on 8muses Downloader

Review: Bad - script does not work

§
Posted: 20.5.2020

no longer working

i attempted to download a bunch of stuff earlier only to find empty zip folders. also, i had to edit the script to work on the site- needed to add "comic." to the url for it to even display the download button.

§
Posted: 30.5.2020

I've found the same thing. It doesn't display the button and it won't properly download the pictures. This can be fixed by:

Replacing line 8 from:

// @match        https://www.8muses.com/comics/*

to:

// @match        https://comics.8muses.com/comics/*

Replacing line 59 from:

images[idx] = 'https://www.8muses.com' + imageSrc;

to:

images[idx] = 'https://comics.8muses.com' + imageSrc;
§
Posted: 4.6.2020

Also add this line after // ==/UserScript==

/* globals jQuery, $, JSZip, saveAs */

redturtleAuthor
§
Posted: 21.7.2020

Thanks. It should be fixed now.

§
Posted: 2.12.2020

this script doesn't work :(

§
Posted: 27.9.2022

It takes quite a long time after images have been downloaded for jszip to save. It's possible this is related to https://github.com/Stuk/jszip/issues/617 and by changing

```
// @require https://cdnjs.cloudflare.com/ajax/libs/jszip/3.2.2/jszip.min.js
```

to

```
// @require https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js
```

But this doesn't seem to have worked locally.

§
Posted: 27.9.2022

From https://github.com/furyutei/twMediaDownloader/issues/87 it looks like it's best to use version 3.1.5 of JSZip

Post reply

Sign in to post a reply.