parent
9dcb904c21
commit
eb51001d0a
10
src/en/kirascans/build.gradle
Normal file
10
src/en/kirascans/build.gradle
Normal 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"
|
BIN
src/en/kirascans/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/en/kirascans/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.3 KiB |
BIN
src/en/kirascans/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/en/kirascans/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.6 KiB |
BIN
src/en/kirascans/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/en/kirascans/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
src/en/kirascans/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/en/kirascans/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
BIN
src/en/kirascans/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/en/kirascans/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 39 KiB |
@ -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)
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user