Add KaynScans (#10792)
All checks were successful
CI / Prepare job (push) Successful in 7s
CI / Build individual modules (push) Successful in 8m20s
CI / Publish repo (push) Successful in 55s

kaynscans
This commit is contained in:
mrtear 2025-10-01 01:29:53 -06:00 committed by Draff
parent 9a738a668f
commit cbfdd982ff
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 25 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.en.kaynscans
import eu.kanade.tachiyomi.multisrc.keyoapp.Keyoapp
class KaynScans : Keyoapp(
"Kayn Scans",
"https://kaynscan.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']"
}