Add MangaKun (#3463)
This commit is contained in:
parent
058aeaa54e
commit
f1364e9c91
|
@ -0,0 +1,9 @@
|
|||
ext {
|
||||
extName = 'Mangá Kun'
|
||||
extClass = '.MangaKun'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://mangakun.com.br'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 6.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 9.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
|
@ -0,0 +1,14 @@
|
|||
package eu.kanade.tachiyomi.extension.pt.mangakun
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
|
||||
class MangaKun : MangaThemesia(
|
||||
"Mangá Kun",
|
||||
"https://mangakun.com.br",
|
||||
"pt-BR",
|
||||
) {
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimit(2)
|
||||
.build()
|
||||
}
|
Loading…
Reference in New Issue