Add ManhuaTop ()

This commit is contained in:
Vetle Ledaal 2024-05-04 17:37:17 +00:00 committed by Draff
parent 38cf9505d2
commit 91ed215f0b
7 changed files with 28 additions and 0 deletions
src/en/manhuatop
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/en/manhuatop

View File

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

Binary file not shown.

After

(image error) Size: 6.3 KiB

Binary file not shown.

After

(image error) Size: 3.2 KiB

Binary file not shown.

After

(image error) Size: 10 KiB

Binary file not shown.

After

(image error) Size: 21 KiB

Binary file not shown.

After

(image error) Size: 36 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.en.manhuatop
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class ManhuaTop : Madara(
"ManhuaTop",
"https://manhuatop.org",
"en",
dateFormat = SimpleDateFormat("MM/dd/yyyy", Locale.ROOT),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = false
override val mangaSubString = "manhua"
override val filterNonMangaItems = false
}