Sleazy Fork is available in English.

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

< Commentaires sur Manga Loader NSFW (unmaintained)

Question / commentaire

§
Posté le: 04/11/2019
Édité le: 07/11/2019

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
§
Posté le: 24/11/2019

{ 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]+)/)); } }

§
Posté le: 12/02/2024

{
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?

Poster une réponse

Connectez-vous pour poster une réponse.