Add HyperionScans (#4401)
This commit is contained in:
parent
90ba562e46
commit
8c4ee90ccc
|
@ -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 |
|
@ -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"
|
||||||
|
}
|
Loading…
Reference in New Issue