add blazescans (#2344)

* add blazescans

* gradle

* add units
This commit is contained in:
Secozzi 2024-04-12 02:06:30 +00:00 committed by Draff
parent 485447d7b2
commit 490eab456b
7 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Blazescans'
extClass = '.Blazescans'
themePkg = 'mangathemesia'
baseUrl = 'https://blazescans.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,11 @@
package eu.kanade.tachiyomi.extension.en.blazescans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.util.concurrent.TimeUnit
class Blazescans : MangaThemesia("Blazescans", "https://blazescans.com", "en") {
override val client = super.client.newBuilder()
.rateLimit(1, 2, TimeUnit.SECONDS)
.build()
}