Add KofiScans (#5309)

This commit is contained in:
Chopper 2024-09-30 10:06:55 -03:00 committed by Draff
parent d74fec37c2
commit 25cca5e9db
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,9 @@
ext {
extName = 'Kofi Scans'
extClass = '.KofiScans'
themePkg = 'mangathemesia'
baseUrl = 'https://kofiscans.me'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -0,0 +1,16 @@
package eu.kanade.tachiyomi.extension.id.kofiscans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
class KofiScans : MangaThemesia(
"Kofi Scans",
"https://kofiscans.me",
"id",
"/manhwa",
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(3)
.build()
}