Add KumoTran (#3907)

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

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

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  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"
}