Greasy Fork is available in English.

Manga Loader (unmaintained)

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

< Feedback on Manga Loader (unmaintained)

Question/comment

§
Posted: 05.04.2016.

add readcomiconline

readcomiconline is functionally the same as kissmanga but for comics:

{
    name: 'read-comic-online',
    match: "^https?://readcomiconline\\.com/Comic/[^/]+/.+",
    img: '#divImage img',
    next: '#divImage img',
    numpages: function() {
        console.log("hello?");
        return W.lstImages.length;
    },
    curpage: function() {
        if(getEls('#divImage img').length > 1) {
            return 1;
        } else {
            return W.currImage + 1;
        }
    },
    nextchap: '#selectEpisode, .selectEpisode',
    prevchap: '#selectEpisode, .selectEpisode',
    pages: function(url, num, cb, ex) {
        cb(W.lstImages[num - 1], num);
    }
}
fuzetsuAuthor
§
Posted: 01.05.2016.
Edited: 01.05.2016.

Great! Thanks for the contribution. Added in v1.9.32.

Post reply

Sign in to post a reply.