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

Стара: v1.6.8 - 04.05.2015 - fixed event order for keybindings (trigger first); fixed chapter detection for manga here and added wait condition
Нова: v1.6.9 - 17.05.2015 - added pururin.com

  • --- /tmp/diffy20250426-3471039-6jbd61 2025-04-26 16:53:22.138183475 +0000
  • +++ /tmp/diffy20250426-3471039-ae3bqn 2025-04-26 16:53:22.138183475 +0000
  • @@ -1,7 +1,7 @@
  • // ==UserScript==
  • // @name Manga Loader
  • // @namespace http://www.fuzetsu.com/MangaLoader
  • -// @version 1.6.8
  • +// @version 1.6.9
  • // @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
  • @@ -50,6 +50,7 @@
  • // @match http://mangalator.ch/show.php?gallery=*
  • // @match http://eatmanga.com/Manga-Scan/*/*
  • // @match http://www.mangacat.me/*/*/*
  • +// @match http://pururin.com/view/*
  • // ==/UserScript==
  • // should be set to true externally if auto loading is wanted (e.g. bookmarklet)
  • @@ -658,6 +659,13 @@
  • curpage: '#page',
  • nextchap: '.info a:nth-child(4)',
  • prevchap: '.info a:nth-child(2)'
  • +}, {
  • + name: 'pururin',
  • + match: "^http://pururin\\.com/view/.+\\.html",
  • + img: '.image img',
  • + next: 'a.image-next',
  • + numpages: 'select.image-pageSelect',
  • + curpage: 'select.image-pageSelect'
  • }];
  • var log = function(msg, type) {