Add MangaKun (#3463)

This commit is contained in:
Chopper 2024-06-08 02:17:04 -03:00 committed by Draff
parent 058aeaa54e
commit f1364e9c91
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 23 additions and 0 deletions

View File

@ -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

View File

@ -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()
}