Add SpiderScans (#3625)

This commit is contained in:
Chopper 2024-06-20 06:05:59 -03:00 committed by Draff
parent ff3f613886
commit f814878dbb
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Spider Scans'
extClass = '.SpiderScans'
themePkg = 'mangathemesia'
baseUrl = 'https://spiderscans.xyz'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.en.spiderscans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class SpiderScans : MangaThemesia(
"Spider Scans",
"https://spiderscans.xyz",
"en",
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}