Add YuriMoonSub (#3177)

* Add YuriMoonSub

* Change rateLimit
This commit is contained in:
Chopper 2024-05-22 02:44:00 -03:00 committed by GitHub
parent 371f76532c
commit 74d9d1da30
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Yuri Moon Sub'
extClass = '.YuriMoonSub'
themePkg = 'zeistmanga'
baseUrl = 'https://yurimoonsub.blogspot.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,10 @@
package eu.kanade.tachiyomi.extension.ar.yurimoonsub
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class YuriMoonSub : ZeistManga("Yuri Moon Sub", "https://yurimoonsub.blogspot.com", "ar") {
override val client = super.client.newBuilder()
.rateLimit(2)
.build()
}