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.4.18 - 2015-01-25 - added 8muses.com, handled edge case that loaded nonexistent images
New: v1.4.19 - 2015-01-26 - fixed issue where reloading image that failed to load pushed it to the bottom of the page

  • --- /tmp/diffy20250427-3904827-sy8jy0 2025-04-27 20:41:34.605572847 +0000
  • +++ /tmp/diffy20250427-3904827-xt5l8b 2025-04-27 20:41:34.605572847 +0000
  • @@ -1,7 +1,7 @@
  • // ==UserScript==
  • // @name Manga Loader
  • // @namespace http://www.fuzetsu.com/MangaLoader
  • -// @version 1.4.18
  • +// @version 1.4.19
  • // @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
  • @@ -690,9 +690,9 @@
  • image.title = 'Reload?';
  • image.src = '//rgeorgeeb-tilebuttongenerator.googlecode.com/hg-history/c35993682c2d50149976fd7a1f302f8c01a88716/asset-studio/src/res/clipart/icons/refresh.svg';
  • image.onclick = function() {
  • - image.remove();
  • - counter.remove();
  • - addImage(src, loc, imgNum, callback);
  • + image.onload = callback;
  • + image.title = '';
  • + image.src = src;
  • };
  • };
  • image.onload = callback;