Add TercoScans (#8322)

* Add TercoScans

* Remove useless redirect.

Co-authored-by: AwkwardPeak7 <48650614+AwkwardPeak7@users.noreply.github.com>

* New day, new url

* Let's pray very hard that the url doesn't change any more

Co-authored-by: Prem Kumar <60751338+prem-k-r@users.noreply.github.com>

---------

Co-authored-by: AwkwardPeak7 <48650614+AwkwardPeak7@users.noreply.github.com>
Co-authored-by: Prem Kumar <60751338+prem-k-r@users.noreply.github.com>
This commit is contained in:
Romain 2025-06-02 04:09:48 +02:00 committed by Draff
parent 93730a008d
commit 9b9440e3e9
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 24 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

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