Add IrisScans (#2916)

This commit is contained in:
Chopper 2024-05-10 12:04:52 -03:00 committed by Draff
parent c1e5450946
commit 6a329074e1
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Iris Scans'
extClass = '.IrisScans'
themePkg = 'mangathemesia'
baseUrl = 'https://irisscans.xyz'
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.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.en.irisscans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
class IrisScans : MangaThemesia(
"Iris Scans",
"https://irisscans.xyz",
"en",
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(4)
.build()
}