Initial commit

This commit is contained in:
FourTOne5
2024-01-09 04:12:39 +06:00
commit 600c345dfe
8593 changed files with 150590 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -0,0 +1,28 @@
package eu.kanade.tachiyomi.extension.tr.shadowceviri
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
import eu.kanade.tachiyomi.source.model.MangasPage
import eu.kanade.tachiyomi.source.model.SManga
import eu.kanade.tachiyomi.util.asJsoup
import okhttp3.Response
class ShadowCeviri : ZeistManga("Shadow Çeviri", "https://shadowceviri.blogspot.com", "tr") {
// ============================== Popular ===============================
override fun popularMangaParse(response: Response): MangasPage {
val document = response.use { it.asJsoup() }
val mangas = document.select("ul.gallery > li.bg").map { element ->
SManga.create().apply {
thumbnail_url = element.attr("style").substringAfter('(').substringBefore(')')
title = element.selectFirst("h3")?.text() ?: "Manga"
// NPE my beloved
setUrlWithoutDomain(element.selectFirst("a")!!.attr("href"))
}
}
return MangasPage(mangas, false)
}
// ============================== Chapters ==============================
override val useOldChapterFeed = true
override val chapterCategory = "Bölüm"
}