Add Kiwiya Scans (#10477)

* Add Kiwiya Scans

* Add missing trailing comma
This commit is contained in:
KirinRaikage 2025-09-13 16:02:59 +02:00 committed by Draff
parent 3829a2df51
commit 87647ac04f
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Kiwiya Scans'
extClass = '.KiwiyaScans'
themePkg = 'mangathemesia'
baseUrl = 'https://kiwiyascans.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.fr.kiwiyascans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import java.text.SimpleDateFormat
import java.util.Locale
class KiwiyaScans : MangaThemesia(
"Kiwiya Scans",
"https://kiwiyascans.com",
"fr",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale.ENGLISH),
) {
override fun chapterListSelector() = "ul li:has(div.chbox:not(:has(> span.mcl-price-num))):has(div.eph-num)"
}