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: 2018-01-23

stop working on www.dm5.com

after click the "load manga" button , nth happen .
looking forward to next patch

§
Posted: 2018-01-28

i have same problem, please update.

§
Posted: 2018-01-31
§
Posted: 2018-02-11

the same problem, please update. :blush:

§
Posted: 2018-02-25

Renew the code about dm5:

{
  name: 'dm5',
  match: "^https?://[^\\.]*\\.dm5\\.com/m[0-9]*",
  img: '#cp_image',
  next: '#cp_image',
  numpages: function () {
    return getEls('a', getEl('.view-paging')).length;
  },
  curpage: function() {
    return parseInt(getEl('.view-paging .current'));
  },
  pages: function(url, num, cb, ex) {
    var cid = window.location.href.match(/m[0-9]*/g)[2].slice(1),
        xhr = new XMLHttpRequest();
    log('chapterfun.ashx?cid=' + cid + '&page=' + num + '&key=' + $("#dm5_key").val() + '&language=' + 1 + '&gtk=' + 6 + '&_cid=' + cid + '&_mid=' + DM5_MID + '&_dt=' + DM5_VIEWSIGN_DT + '&_sign=' + DM5_VIEWSIGN);
    xhr.open('get', 'chapterfun.ashx?cid=' + cid + '&page=' + num + '&key=' + $("#dm5_key").val() + '&language=' + 1 + '&gtk=' + 6 + '&_cid=' + cid + '&_mid=' + DM5_MID + '&_dt=' + DM5_VIEWSIGN_DT + '&_sign=' + DM5_VIEWSIGN);
    xhr.onload = function() {
      var images = eval(xhr.responseText);
      cb(images[0], images[0]);
    };
    log('url ' + url + ' ' + num + ' ' + cb + ' ' + ex);
    xhr.send();
  },
  nextchap: 'a.logo_2',
  prevchap: 'a.logo_1',
  wait: '#cp_image'
}
§
Posted: 2018-02-26

It works, thanks @aquastartw

fuzetsuAuthor
§
Posted: 2018-02-27

Should be working in the latest update.

§
Posted: 2018-02-27

stil not work after update 1.11.20
sample link http://www.dm5.com/m583616/

tested ff 55.0.3
greasemonkey 3.17

fuzetsuAuthor
§
Posted: 2018-03-01

That link works on chrome with Tampermonkey, so it might be a firefox or greasemonkey specific bug.. I still haven't gotten around to figuring out what greasemonkey broke with their major update.. So this may not be fixed until that happens, unless someone contributes a fix before then.

Post reply

Sign in to post a reply.