Add KomikSay (#2917)

This commit is contained in:
Chopper 2024-05-10 12:05:51 -03:00 committed by Draff
parent 6a329074e1
commit 39e153cc67
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Komik Say'
extClass = '.KomikSay'
themePkg = 'mangathemesia'
baseUrl = 'https://komiksay.info'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.id.komiksay
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
class KomikSay : MangaThemesia(
"Komik Say",
"https://komiksay.info",
"id",
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(2)
.build()
}