Sleazy Fork is available in English.

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

< Opiniones de Manga Loader NSFW (unmaintained)

Pregunta o comentario

fuzetsuAutor
§
Publicado: 28/9/2015

Added to pending list.

§
Publicado: 4/11/2015

Yomanga is foolslider now, so it should be an easy add. If anyone wants to do it manually, you need to add these:

// @match *://yomanga.co/reader/read/*
--add to "// -- FOOLSLIDE NSFW START" section

'yomanga.co/reader/read/.+',
--add to "name: 'foolslide', match: "^https?://(" + [" section

fuzetsuAutor
§
Publicado: 4/11/2015

Thanks @ramenchef
Fooslide definitely makes it easier. Sorry @mangal0ver for leaving this one for so long.
Added in the latest version

§
Publicado: 6/12/2015
fuzetsuAutor
§
Publicado: 29/12/2015

@Gnauq
sorry for the wait, added in the newest version.

§
Publicado: 9/1/2016

Fuck you mangal0ver and fuzetsu for implementing longstrip on yomanga.co . We need the ad money to pay for the server and we allow everyone to download the chapters and I rehost them pretty quickly on bato.to which has a longstrip. If you absolutely must read on longstrip wait for the bato.to rehost.

fuzetsuAutor
§
Publicado: 10/1/2016

Hey @Leguron if you really think that this userscript specifically is hurting your ad revenue I'm willing to remove it. I can't stop people from adding it manually themselves though.
Just FYI this userscript only has about 400 active users most of which most probably don't use your site, and most of which also probably use adblock anyway.
Either way, anyone (in this thread or visiting) who likes what yomanga.co is doing and and wants them to keep doing it should donate to them. http://yomanga.co/donate

§
Publicado: 12/1/2016

hi it's me again :smiley: can you add hentaibox.net ?

fuzetsuAutor
§
Publicado: 8/2/2016

@Gnauq Sorry for the delay on this one, added in v1.0.30.

§
Publicado: 12/2/2016

ty so much

§
Publicado: 15/6/2016

Pls add hentai-free.org. This site has a lot of transltated original manga

§
Publicado: 17/6/2016
Editado: 2/7/2016

fuzetsu, you are more than welcome to add the following implementation if you like. In the meantime, Gnauq, you can try this out by editing the user script manually. Replace the 4th to last line of the script:

}];

with this:

}, {
  name: 'hentai-free',
  match: "^http://hentai-free.org/(?!(?:tag|manga-doujinshi|hentai-video|hentai-wall|tags-map)/|.*\\?).+/$",
  img: function() {
    return W.pages[0];
  },
  next: function () {
    return "N/A";
  },
  numpages: function() {
    return W.pages.length;
  },
  curpage: function() {
    return 1;
  },
  wait: function() {
    var links = getEls('.gallery-item a, a.bwg_lightbox_0');
    if (links.length > 0) {
      W.pages = links.map(function(el) {
        return el.href.replace(/\?.*$/, '');
      });
      return true;
    }
    return false;
  },
  pages: function(url, num, cb, ex) {
    cb(W.pages[num - 1], num);
  }
}];

Then after line 28, add this:

// @match *://*.hentai-free.org/*

Due to this being a collection of Wordpress galleries, the naming of URLs is such that you may get "Load Manga" buttons on pages that aren't actually image galleries. (I tried to exclude the main pages, but it will show up on video pages for example.)

EDIT: fixed to work with older galleries.

Publicar respuesta

Inicia sesión para responder.