Add KofiScans (#5309)
This commit is contained in:
parent
d74fec37c2
commit
25cca5e9db
|
@ -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 |
|
@ -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()
|
||||
}
|
Loading…
Reference in New Issue