Add IzanamiScans (#6040)

This commit is contained in:
Chopper 2024-11-14 03:32:14 -03:00 committed by GitHub
parent 5beef48c69
commit e55bf09659
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 29 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@ -0,0 +1,20 @@
package eu.kanade.tachiyomi.extension.id.izanamiscans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import java.text.SimpleDateFormat
import java.util.Locale
class IzanamiScans : MangaThemesia(
"Izanami Scans",
"https://izanamiscans.my.id",
"id",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("id")),
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(3)
.build()
override val seriesAuthorSelector = ".fmed b:contains(Penulis) + span"
}