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.9.26 - 2015-12-29 - made stats collapse state persistent; added support for beta.senmanga.com
New: v1.9.27 - 2015-12-30 - added hellocomic

  • --- /tmp/diffy20250426-3454236-xk2aya 2025-04-26 05:04:57.505536813 +0000
  • +++ /tmp/diffy20250426-3454236-v534xj 2025-04-26 05:04:57.506536831 +0000
  • @@ -1,7 +1,7 @@
  • // ==UserScript==
  • // @name Manga Loader
  • // @namespace http://www.fuzetsu.com/MangaLoader
  • -// @version 1.9.26
  • +// @version 1.9.27
  • // @description 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
  • // @copyright 2014+, fuzetsu
  • // @noframes
  • @@ -58,6 +58,7 @@
  • // @match *://br.mangahost.com/manga/*/*
  • // @match *://www.manga.ae/*/*/*
  • // @match *://mangaforall.com/manga/*/*/*
  • +// @match *://hellocomic.com/*/*/*
  • // -- FOOLSLIDE START
  • // @match *://manga.redhawkscans.com/reader/read/*
  • // @match *://reader.s2smanga.com/read/*
  • @@ -932,6 +933,17 @@
  • console.log(W.pages, num)
  • cb(W.pages[num - 1].url, num);
  • }
  • +}, {
  • + name: 'hellocomic',
  • + match: "https?://hellocomic.com/[^/]+/[^/]+/p[0-9]+",
  • + img: '.coverIssue img',
  • + next: '.coverIssue a',
  • + numpages: '#e1',
  • + curpage: '#e1',
  • + nextchap: '#e2',
  • + prevchap: '#e2',
  • + curchap: '#e2',
  • + numchaps: '#e2'
  • }];
  • // END OF IMPL