Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 8.8 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 42 KiB |
BIN
multisrc/overrides/zeistmanga/tooncubus/res/web_hi_res_512.png
Normal file
BIN
multisrc/overrides/zeistmanga/tooncubus/res/web_hi_res_512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 279 KiB |
25
multisrc/overrides/zeistmanga/tooncubus/src/Tooncubus.kt
Normal file
25
multisrc/overrides/zeistmanga/tooncubus/src/Tooncubus.kt
Normal file
@@ -0,0 +1,25 @@
|
||||
package eu.kanade.tachiyomi.extension.id.tooncubus
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import eu.kanade.tachiyomi.source.model.SChapter
|
||||
import eu.kanade.tachiyomi.util.asJsoup
|
||||
import okhttp3.Response
|
||||
|
||||
class Tooncubus : ZeistManga("Tooncubus", "https://www.tooncubus.top", "id") {
|
||||
|
||||
override val pageListSelector = "div.check-box center"
|
||||
|
||||
override fun chapterListParse(response: Response): List<SChapter> {
|
||||
return response.asJsoup().selectFirst("ul.series-chapterlist")!!.select("div.flexch-infoz").map { element ->
|
||||
SChapter.create().apply {
|
||||
name = element.select("span").text()
|
||||
url = element.select("a").attr("href") // The website uses another domain for reading
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
override fun pageListRequest(chapter: SChapter) = GET(chapter.url, headers)
|
||||
|
||||
override fun getChapterUrl(chapter: SChapter) = chapter.url
|
||||
}
|
||||
Reference in New Issue
Block a user