Add AstraScans (#4298)
This commit is contained in:
parent
ef7ff81f1b
commit
5dbcb16307
|
@ -0,0 +1,9 @@
|
|||
ext {
|
||||
extName = 'Astra Scans'
|
||||
extClass = '.AstraScans'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://astrascans.org'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 5.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 8.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
|
@ -0,0 +1,15 @@
|
|||
package eu.kanade.tachiyomi.extension.en.astrascans
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
|
||||
class AstraScans : MangaThemesia(
|
||||
"Astra Scans",
|
||||
"https://astrascans.org",
|
||||
"en",
|
||||
"/series",
|
||||
) {
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimit(3)
|
||||
.build()
|
||||
}
|
Loading…
Reference in New Issue