Add FirstKissManhua (#5396)

* Add FirstKissManhua

* Fix lint
This commit is contained in:
Chopper 2024-10-07 08:15:56 -03:00 committed by Draff
parent 6231261e72
commit 91543c7e10
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'First Kiss Manhua'
extClass = '.FirstKissManhua'
themePkg = 'madara'
baseUrl = 'https://1stkissmanhua.net'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,16 @@
package eu.kanade.tachiyomi.extension.en.firstkissmanhua
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class FirstKissManhua : Madara(
"First Kiss Manhua",
"https://1stkissmanhua.net",
"en",
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val useLoadMoreRequest = LoadMoreStrategy.Never
}