Add ValirScans (#7473)

This commit is contained in:
mrtear 2025-02-03 19:13:13 +05:00 committed by Draff
parent 0505a26934
commit f6b09f2a03
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 25 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

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