Add Razure (#10639)

* razure

* oops

* manga selector
This commit is contained in:
mrtear 2025-09-21 12:43:58 -06:00 committed by Draff
parent 27d5cf14b3
commit 588b4d8bf4
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Razure'
extClass = '.Razure'
themePkg = 'mangathemesia'
baseUrl = 'https://razure.org'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.en.razure
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
class Razure : MangaThemesia(
"Razure",
"https://razure.org",
"en",
"/series",
) {
override fun chapterListSelector() = "#chapterlist li:not([data-num*='🔒'])"
override fun searchMangaSelector() = ".listupd .bs .bsx:not(:has(.novelabel))"
}