Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 4.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 6.6 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 21 KiB |
BIN
multisrc/overrides/mangathemesia/komiksan/res/web_hi_res_512.png
Normal file
BIN
multisrc/overrides/mangathemesia/komiksan/res/web_hi_res_512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 139 KiB |
16
multisrc/overrides/mangathemesia/komiksan/src/Komiksan.kt
Normal file
16
multisrc/overrides/mangathemesia/komiksan/src/Komiksan.kt
Normal file
@@ -0,0 +1,16 @@
|
||||
package eu.kanade.tachiyomi.extension.id.komiksan
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import okhttp3.OkHttpClient
|
||||
import org.jsoup.nodes.Document
|
||||
|
||||
class Komiksan : MangaThemesia("Komiksan", "https://komiksan.link", "id", "/list") {
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(4)
|
||||
.build()
|
||||
|
||||
override fun mangaDetailsParse(document: Document) = super.mangaDetailsParse(document).apply {
|
||||
title = document.selectFirst(seriesThumbnailSelector)!!.attr("alt")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user