add exoscans to madara (#7867)

* Create ExoScans.kt

* Update ExoScans.kt

* Update MadaraGenerator.kt

* add icon
This commit is contained in:
CVIUS 2021-06-25 20:46:05 +08:00 committed by GitHub
parent 5876f259c8
commit 9d1ff2c506
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 19 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.en.exoscans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.source.model.Page
import org.jsoup.nodes.Document
class ExoScans : Madara("Exo Scans", "https://exoscans.club", "en") {
override fun pageListParse(document: Document): List<Page> {
return document.select(pageListParseSelector).mapIndexed { index, element ->
Page(
index,
"",
element.select("img.wp-manga-chapter-img").attr("src")
)
}
}
}

View File

@ -67,6 +67,7 @@ class MadaraGenerator : ThemeSourceGenerator {
SingleLang("Dream Manga", "https://en.ruyamanga.com", "en", overrideVersionCode = 2), SingleLang("Dream Manga", "https://en.ruyamanga.com", "en", overrideVersionCode = 2),
SingleLang("Drope Scan", "https://dropescan.com", "pt-BR", overrideVersionCode = 2), SingleLang("Drope Scan", "https://dropescan.com", "pt-BR", overrideVersionCode = 2),
SingleLang("Esomanga", "http://esomanga.com", "tr"), SingleLang("Esomanga", "http://esomanga.com", "tr"),
SingleLang("Exo Scans", "https://exoscans.club", "en"),
SingleLang("FDM Scan", "https://fdmscan.com", "pt-BR", overrideVersionCode = 2), SingleLang("FDM Scan", "https://fdmscan.com", "pt-BR", overrideVersionCode = 2),
SingleLang("Free Manga", "https://freemanga.me", "en", isNsfw = true, overrideVersionCode = 2), SingleLang("Free Manga", "https://freemanga.me", "en", isNsfw = true, overrideVersionCode = 2),
SingleLang("FreeWebtoonCoins", "https://freewebtooncoins.com", "en", overrideVersionCode = 1), SingleLang("FreeWebtoonCoins", "https://freewebtooncoins.com", "en", overrideVersionCode = 1),