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

< 腳本Manga Loader (unmaintained)的回應

評論:正評 - 腳本一切正常

Deleted user 88916
§
發表於:2016-12-22

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

發表回覆

登入以回復