Add Kishisan (#3179)

* Add Kishisan

* Change rateLimit
This commit is contained in:
Chopper 2024-05-22 02:44:48 -03:00 committed by Draff
parent ca386889d5
commit e1879e0528
7 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Kishisan'
extClass = '.Kishisan'
themePkg = 'zeistmanga'
baseUrl = 'https://www.kishisan.site'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

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