Add KumoTran ()

This commit is contained in:
Vetle Ledaal 2024-07-09 13:21:47 +02:00 committed by Draff
parent 1d09677e3b
commit 556ddb2d80
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 32 additions and 0 deletions
src/th/kumotran
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/th/kumotran

View File

@ -0,0 +1,10 @@
ext {
extName = 'KumoTran'
extClass = '.KumoTran'
themePkg = 'madara'
baseUrl = 'https://www.kumotran.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

(image error) Size: 6.7 KiB

Binary file not shown.

After

(image error) Size: 3.3 KiB

Binary file not shown.

After

(image error) Size: 11 KiB

Binary file not shown.

After

(image error) Size: 23 KiB

Binary file not shown.

After

(image error) Size: 40 KiB

View File

@ -0,0 +1,22 @@
package eu.kanade.tachiyomi.extension.th.kumotran
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class KumoTran : Madara(
"KumoTran",
"https://www.kumotran.com",
"th",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("th")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = false
override val filterNonMangaItems = false
override val mangaDetailsSelectorTitle = ".post-title-custom"
override val altNameSelector = ".post-content_item:contains(ชื่ออื่น) .summary-content"
override val pageListParseSelector = ".reading-content img"
}