Add Royal Manga (#8643)

* Add Royal Manga

* Update src/fr/royalmanga/build.gradle
This commit is contained in:
KirinRaikage 2025-04-26 15:33:35 +02:00 committed by Draff
parent 38f511b815
commit 590f013578
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Royal Manga'
extClass = '.RoyalManga'
themePkg = 'zeistmanga'
baseUrl = 'https://www.royalmanga.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,20 @@
package eu.kanade.tachiyomi.extension.fr.royalmanga
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class RoyalManga : ZeistManga("Royal Manga", "https://www.royalmanga.com", "fr") {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val popularMangaSelector = "div#PopularPosts2 div.grid > article"
override val popularMangaSelectorTitle = "h3 a"
override val popularMangaSelectorUrl = popularMangaSelectorTitle
override val mangaDetailsSelector = "main"
override val mangaDetailsSelectorGenres = "dl dt:contains(Genre) + dd a"
override val mangaDetailsSelectorAuthor = "u > b:contains(Auteur) + dd"
override val pageListSelector = "article#reader div.separator"
}