Add ManhwaToon (#6904)

This commit is contained in:
Chopper 2024-12-30 14:15:14 -03:00 committed by Draff
parent 943b7992c8
commit 4f8715d432
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 23 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,13 @@
package eu.kanade.tachiyomi.extension.en.manhwatoon
import eu.kanade.tachiyomi.multisrc.madara.Madara
class ManhwaToon : Madara(
"Manhwa Toon",
"https://www.manhwatoon.com",
"en",
) {
override val useNewChapterEndpoint = true
override val useLoadMoreRequest = LoadMoreStrategy.Always
}