Support for over 70 sites! Loads manga chapter into one page in a long strip format, supports switching chapters, minimal script with no dependencies, easy to implement new sites, loads quickly and works on mobile devices through bookmarklet
< Обсуждения: Manga Loader (unmaintained)
[Small fix] For images on eatmanga.com
There are two selfexclusive types of images on eatmanga.com: #eatmanga_image and #eatmanga_image_big
#eatmanga_image
#eatmanga_image_big
And two tipes of content: #main_content and #main_content_big
#main_content
#main_content_big
The second one produces an undefined with #main_content img selector.
undefined
#main_content img
I suggest replacing line 550 img: '#main_content img', with: img: '#eatmanga_image,#eatmanga_image_big'
img: '#main_content img',
img: '#eatmanga_image,#eatmanga_image_big'
Test example: http://eatmanga.com/Manga-Scan/Dagashi-Kashi/Dagashi-Kashi-001/page-1 and http://eatmanga.com/Manga-Scan/Dagashi-Kashi/Dagashi-Kashi-001/page-2
Thanks! Looks like the site changed their layout since the last update. Fixed in v1.8.11.
Войдите, чтобы ответить.
[Small fix] For images on eatmanga.com
There are two selfexclusive types of images on eatmanga.com:
#eatmanga_image
and#eatmanga_image_big
And two tipes of content:
#main_content
and#main_content_big
The second one produces an
undefined
with#main_content img
selector.I suggest replacing line 550
img: '#main_content img',
with:img: '#eatmanga_image,#eatmanga_image_big'
Test example:
http://eatmanga.com/Manga-Scan/Dagashi-Kashi/Dagashi-Kashi-001/page-1 and http://eatmanga.com/Manga-Scan/Dagashi-Kashi/Dagashi-Kashi-001/page-2