Manga Loader NSFW (unmaintained)

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, loads quickly and works on mobile devices through bookmarklet

Old: v1.0.49 - 2016-11-18 - fixed 8muses
New: v1.0.50 - 2016-12-06 - added hentaifox.com

  • --- /tmp/diffy20240427-2242145-7dt6p8 2024-04-27 07:55:23.531917820 +0000
  • +++ /tmp/diffy20240427-2242145-bbvus 2024-04-27 07:55:23.531917820 +0000
  • @@ -1,7 +1,7 @@
  • // ==UserScript==
  • // @name Manga Loader NSFW
  • // @namespace http://www.fuzetsu.com/MangaLoaderNSFW
  • -// @version 1.0.49
  • +// @version 1.0.50
  • // @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, loads quickly and works on mobile devices through bookmarklet
  • // @copyright 2016+, fuzetsu
  • // @noframes
  • @@ -33,6 +33,7 @@
  • // @match *://*.simply-hentai.com/*/page/*
  • // @match *://*.gameofscanlation.moe/projects/*/*
  • // @match *://*.luscious.net/c/*/pictures/album/*/id/*
  • +// @match *://*.hentaifox.com/g/*
  • // -- NSFW END
  • // -- FOOLSLIDE NSFW START
  • // @match *://reader.yuriproject.net/read/*
  • @@ -499,13 +500,24 @@
  • }
  • }, {
  • name: 'luscious',
  • - match: "https?://luscious\.net/c/.+?/pictures/album/.+?/id/.+",
  • + match: "https?://luscious\\.net/c/.+?/pictures/album/.+?/id/.+",
  • img: '.icon-download',
  • next: '#next',
  • curpage: function() {
  • return parseInt(getEl('#pj_page_no').value);
  • },
  • numpages: '#pj_no_pictures'
  • +}, {
  • + name: 'hentaifox',
  • + match: "https?://hentaifox\\.com/g/.+",
  • + img: '.gallery_content img.lazy',
  • + next: '.gallery_content a.next_nav',
  • + curpage: function() {
  • + return parseInt(extractInfo('.pag_info', {type: 'text'}));
  • + },
  • + numpages: function() {
  • + return extractInfo('.pag_info') - 2;
  • + }
  • }];
  • log('loading nsfw implementations...');