Add NvManga (#2901)

This commit is contained in:
Vetle Ledaal 2024-05-09 15:13:10 +00:00 committed by Draff
parent 804208d4f8
commit 78f01bf837
7 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'NvManga'
extClass = '.NvManga'
themePkg = 'madara'
baseUrl = 'https://nvmanga.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -0,0 +1,21 @@
package eu.kanade.tachiyomi.extension.en.nvmanga
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class NvManga : Madara(
"NvManga",
"https://nvmanga.com",
"en",
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale.ROOT),
) {
override val seriesTypeSelector = ".post-content_item:contains(Origination) .summary-content"
override val useLoadMoreRequest = LoadMoreStrategy.AutoDetect
override val useNewChapterEndpoint = false
override val mangaSubString = "webtoon"
override val fetchGenres = false
}