Add NyraScans (#11385)

nyrascans
This commit is contained in:
mrtear 2025-11-03 08:31:28 -07:00 committed by Draff
parent b8f9a38f48
commit 399f44d219
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 25 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

View File

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