Add IchiroManga (#4992)

This commit is contained in:
TheKingTermux 2024-09-11 12:17:40 +07:00 committed by GitHub
parent f5a2803d85
commit ec47b8d29c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'IchiroManga'
extClass = '.IchiroManga'
themePkg = 'mangathemesia'
baseUrl = 'https://ichiromanga.my.id'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.id.ichiromanga
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
class IchiroManga : MangaThemesia("IchiroManga", "https://ichiromanga.my.id", "id") {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(4)
.build()
override val hasProjectPage = false
}