add NabiScans (#4613)

This commit is contained in:
AwkwardPeak7 2024-08-14 16:16:37 +05:00 committed by GitHub
parent fe4ecfc224
commit 8e20f9250f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Nabi Scans'
extClass = '.NabiScans'
themePkg = 'madara'
baseUrl = 'https://nabiscans.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.tr.nabiscans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class NabiScans : Madara(
"Nabi Scans",
"https://nabiscans.com",
"tr",
SimpleDateFormat("d MMMM yyyy", Locale("tr")),
) {
override val popularMangaUrlSelector = "div.chap-title a"
override val useNewChapterEndpoint = true
}