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)

Question/comment

§
Posted: 2019-11-04
Edited: 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
§
Posted: 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]+)/)); } }

§
Posted: 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?

Post reply

Sign in to post a reply.