add ParadiseScans (#11627)

paradisescans
This commit is contained in:
mrtear 2025-11-14 10:29:29 -07:00 committed by Draff
parent f9e9cc66c8
commit 1aa1119924
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Paradise Scans'
extClass = '.ParadiseScans'
themePkg = 'keyoapp'
baseUrl = 'https://paradisescans.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 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,20 @@
package eu.kanade.tachiyomi.extension.en.paradisescans
import eu.kanade.tachiyomi.multisrc.keyoapp.Keyoapp
import eu.kanade.tachiyomi.source.model.SManga
import org.jsoup.nodes.Document
class ParadiseScans : Keyoapp(
"ParadiseScans",
"https://paradisescans.com",
"en",
) {
override fun mangaDetailsParse(document: Document): SManga = super.mangaDetailsParse(document).apply {
document.select("div:has(h1) a[href*='?genre=']")
.joinToString { it.attr("title") }
.takeIf { it.isNotEmpty() }
?.let {
genre = genre?.plus(", $it") ?: it
}
}
}