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

< Feedback on Manga Loader NSFW (unmaintained)

Review: Good - script works

Deleted user 88916
§
Posted: 2016-12-22

Developer: Addon for "hentai2read.com" i made.

// @match *://*.hentai2read.com/*/*/*/

{
name: 'hentai2read',
match: "^https?://hentai2read\\.com/.*/[0-9]+/*",
img: '#arf-reader',
index_:null,
next: function() {
if(this.index_ == null) {
this.index_=this.curpage();
}
if (this.curpage() > this.numpages()) {
return null;
}else {
this.index_+=1;
return (unsafeWindow.rff_thisChapter + this.index_ + '/');
}
},
numpages: function() {
return unsafeWindow.rff_imageList.length;
},
curpage: function(){
return parseInt(unsafeWindow.rff_thisIndex, 10);
},
nextchap: function(){
return unsafeWindow.rff_nextChapter;
},
prevchap: function(){
return unsafeWindow.rff_previousChapter;
},
},

fuzetsuAuthor
§
Posted: 2016-12-23
Edited: 2016-12-23

Thanks! I already added hentai2read last version, but I didn't have the chapter switching part, added it.

https://sleazyfork.org/en/scripts/12657-manga-loader-nsfw/diff?v1=165374&v2=162512

Post reply

Sign in to post a reply.