Add Magerin (#4399)

This commit is contained in:
Chopper 2024-08-04 07:50:53 -03:00 committed by GitHub
parent d33bd66ec9
commit b06a0937d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Magerin'
extClass = '.Magerin'
themePkg = 'zeistmanga'
baseUrl = 'https://www.magerin.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 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: 20 KiB

View File

@ -0,0 +1,10 @@
package eu.kanade.tachiyomi.extension.id.magerin
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class Magerin : ZeistManga("Magerin", "https://www.magerin.com", "id") {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}