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

< Feedback on Manga Loader (unmaintained)

Review: Good - script works

Deleted user 88916
§
Posted: 22/12/2016

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

Hope it helps.


// @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;
},
},

Post reply

Sign in to post a reply.