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

< 腳本Manga Loader NSFW (unmaintained)的回應

提問/評論

§
發表於:2019-11-04
編輯:2019-11-07

Help with hentainexus script please?

Currently have : // @match *://hentainexus.com/read/*/*

for the NSFW Start section and: { name: 'hentainexus', match: "^https?://hentainexus\\.com\\/read\\/[0-9]+/[0-9]+", img: '#currImage', next: '#nextLink', }
},

for the implementation, did everything according to the tutorial and double checked if everything is correct like 10 times. Could someone point me in the right direction or tell me why it won't work?

EAH
§
發表於:2019-11-24

{ name: 'hentainexus', match: "https://hentainexus.com/read/[^/]+/.+", img: '#currImage', next: '#nextLink', curpage: function() { return parseInt(getEl('.is-current').parentNode.textContent.match(/([0-9]+)\//)); }, numpages: function() { return parseInt(getEl('.pagination-link:last-child').parentNode.textContent.match(/\/([0-9]+)/)); } }

§
發表於:2024-02-12

{
name: 'hentainexus',
match: "https://hentainexus.com/read/[^/]+/.+",
img: '#currImage',
next: '#nextLink',
curpage: function() {
return parseInt(getEl('.is-current').parentNode.textContent.match(/([0-9]+)\//));
},
numpages: function() {
return parseInt(getEl('.pagination-link:last-child').parentNode.textContent.match(/\/([0-9]+)/));
}
}

Doesn't work anymore, first of all the match doesn't work, and even if fixed, nothing happens when you load manga. Any help?

發表回覆

登入以回復