Rage Scans: Exclude Paid chapters (#10945)

* Exclude locked chapters for Rage Scans

* lint
This commit is contained in:
Prem Kumar 2025-10-08 21:10:09 +05:30 committed by Draff
parent 0e218bbfac
commit 08ead06187
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,7 @@ ext {
extClass = '.RageScans'
themePkg = 'mangathemesia'
baseUrl = 'https://ragescans.com'
overrideVersionCode = 0
overrideVersionCode = 1
isNsfw = false
}

View File

@ -6,4 +6,6 @@ class RageScans : MangaThemesia(
"Rage Scans",
"https://ragescans.com",
"en",
)
) {
override fun chapterListSelector() = "li:has(.chbox .eph-num):not(:has([data-bs-target='#lockedChapterModal']))"
}