Add Kirascans (#10378)

* Add Kirascans

* rm checks
This commit is contained in:
manti 2025-09-04 20:04:51 +02:00 committed by Draff
parent 9dcb904c21
commit eb51001d0a
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 28 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.en.kirascans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.source.model.Page
import org.jsoup.nodes.Document
class KiraScans : MangaThemesia(
"Kira Scans",
"https://kirascans.com",
"en",
) {
override fun pageListParse(document: Document): List<Page> {
document.selectFirst("p.fw-semibold:contains(This chapter is locked)")?.let {
throw Exception("Chapter is locked")
}
return super.pageListParse(document)
}
}