Add Nyanu Kafe (#10424)

This commit is contained in:
manti 2025-09-07 22:50:39 +02:00 committed by Draff
parent 8a84ce8d8b
commit be6eab070b
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Nyanu Kafe'
extClass = '.NyanuKafe'
themePkg = 'keyoapp'
baseUrl = 'https://nyanukafe.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.en.nyanukafe
import eu.kanade.tachiyomi.multisrc.keyoapp.Keyoapp
class NyanuKafe : Keyoapp(
"Nyanu Kafe",
"https://nyanukafe.com",
"en",
) {
override val descriptionSelector: String = "div.grid > div.overflow-hidden > p"
override val statusSelector: String = "div[alt=Status]"
override val authorSelector: String = "div[alt=Author]"
override val artistSelector: String = "div[alt=Artist]"
override val genreSelector: String = "div[alt='Series Type']"
}