8muses Downloader

Download from 8muses.com

< Відгуки до 8muses Downloader

Відгук: Погано - скрипт не працює

§
Опубліковано: 20.05.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.

§
Опубліковано: 30.05.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;
§
Опубліковано: 04.06.2020

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

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

redturtleАвтор
§
Опубліковано: 21.07.2020

Thanks. It should be fixed now.

§
Опубліковано: 02.12.2020

this script doesn't work :(

§
Опубліковано: 27.09.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.

§
Опубліковано: 27.09.2022

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

Опублікувати відповідь

Sign in to post a reply.