Add Novato Scans (#7128)

This commit is contained in:
Hellkaros 2025-01-12 06:29:35 -03:00 committed by Draff
parent 32cea00999
commit f5708a63fc
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Novato Scans'
extClass = '.NovatoScans'
themePkg = 'zeistmanga'
baseUrl = 'https://www.novatoscans.top'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -0,0 +1,16 @@
package eu.kanade.tachiyomi.extension.es.novatoscans
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class NovatoScans : ZeistManga(
"Novato Scans",
"https://www.novatoscans.top",
"es",
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val pageListSelector = "div.check-box"
}