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

Old: v1.6.14 - 2015-06-10 - removed onemanga / onemanga 2, added mangakaka (the new version)
New: v1.6.15 - 2015-06-12 - added readmanga.today

  • --- /tmp/diffy20240608-1592098-wsk4wi 2024-06-08 12:49:15.543637257 +0000
  • +++ /tmp/diffy20240608-1592098-9h2los 2024-06-08 12:49:15.543637257 +0000
  • @@ -1,7 +1,7 @@
  • // ==UserScript==
  • // @name Manga Loader
  • // @namespace http://www.fuzetsu.com/MangaLoader
  • -// @version 1.6.14
  • +// @version 1.6.15
  • // @description Loads manga chapter into one page in a long strip format, supports switching chapters and works for a variety of sites, minimal script with no dependencies, easy to implement new sites
  • // @copyright 2014+, fuzetsu
  • // @noframes
  • @@ -51,6 +51,7 @@
  • // @match http://pururin.com/view/*
  • // @match http://www.hentairules.net/galleries*/picture.php*
  • // @match http://www.mangakaka.com/*/*
  • +// @match http://www.readmanga.today/*/*
  • // ==/UserScript==
  • // should be set to true externally if auto loading is wanted (e.g. bookmarklet)
  • @@ -712,6 +713,16 @@
  • prevchap: function() {
  • return this.nextchap(true);
  • }
  • +}, {
  • + name: 'readmanga.today',
  • + match: "http://www\\.readmanga\\.today/[^/]+/.+",
  • + img: '.page_chapter img',
  • + next: '.list-switcher-2 > li:nth-child(3) > a',
  • + numpages: '.list-switcher-2 select[name=category_type]',
  • + curpage: '.list-switcher-2 select[name=category_type]',
  • + nextchap: '.jump-menu[name=chapter_list]',
  • + prevchap: '.jump-menu[name=chapter_list]',
  • + invchap: true
  • }];
  • var log = function(msg, type) {