Add Madara Scans (#8559)

* Added MadaraScans

* Update MadaraScans.kt

* Update MadaraScans.kt

lint

* revert

* Update MadaraScans.kt

simply hide paid chapters by default

* lint
This commit is contained in:
Prem Kumar 2025-04-24 22:41:20 +05:30 committed by Draff
parent e853527587
commit b1ef508489
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Madara Scans'
extClass = '.MadaraScans'
themePkg = 'mangathemesia'
baseUrl = 'https://madarascans.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -0,0 +1,12 @@
package eu.kanade.tachiyomi.extension.en.madarascans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
class MadaraScans : MangaThemesia(
"Madara Scans",
"https://madarascans.com",
"en",
mangaUrlDirectory = "/series",
) {
override fun chapterListSelector() = "li[data-num]:has(> a[href]:not([data-bs-target='#lockedChapterModal']))"
}