Add MangaTX (#6041)

This commit is contained in:
Chopper 2024-11-14 03:32:48 -03:00 committed by GitHub
parent e55bf09659
commit 9f64625684
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'MangaTX'
extClass = '.MangaTX'
themePkg = 'mangathemesia'
baseUrl = 'https://mangatx.cc'
overrideVersionCode = 0
isNsfw = true
}
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.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,20 @@
package eu.kanade.tachiyomi.extension.en.mangatx
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class MangaTX : MangaThemesia(
"MangaTX",
"https://mangatx.cc",
"en",
mangaUrlDirectory = "/manga-list",
dateFormat = SimpleDateFormat("dd-MM-yyyy", Locale.ROOT),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val seriesAuthorSelector = ".imptdt:contains(Author) a"
}