Add KumoTran (#3907)
This commit is contained in:
parent
1d09677e3b
commit
556ddb2d80
|
@ -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 |
|
@ -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"
|
||||
}
|
Loading…
Reference in New Issue