Add ToomTam-Manga (#3970)

This commit is contained in:
Vetle Ledaal 2024-07-12 13:17:26 +02:00 committed by Draff
parent 9fb6efe03d
commit 8c19cc40ca
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'ToomTam-Manga'
extClass = '.ToomTamManga'
themePkg = 'mangathemesia'
baseUrl = 'https://toomtam-manga.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

@ -0,0 +1,16 @@
package eu.kanade.tachiyomi.extension.th.toomtammanga
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import java.text.SimpleDateFormat
import java.util.Locale
class ToomTamManga : MangaThemesia(
"ToomTam-Manga",
"https://toomtam-manga.com",
"th",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("th")),
) {
override val seriesAuthorSelector = ".imptdt:contains(ผู้เขียน) i"
override val seriesArtistSelector = ".imptdt:contains(ศิลปิน) i"
override val seriesTypeSelector = ".imptdt:contains(พิมพ์) a"
}