Add HyperionScans (#4401)

This commit is contained in:
Chopper 2024-08-04 07:51:22 -03:00 committed by Draff
parent 90ba562e46
commit 8c4ee90ccc
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Hyperion Scans'
extClass = '.HyperionScans'
themePkg = 'zeistmanga'
baseUrl = 'https://www.hyperionscans.site'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.tr.hyperionscans
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class HyperionScans : ZeistManga(
"Hyperion Scans",
"https://www.hyperionscans.site",
"tr",
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val popularMangaSelector = "div#PopularPosts3 article"
override val popularMangaSelectorTitle = "h3"
override val popularMangaSelectorUrl = "a"
}