Johannes Joens b2d8775f19
MangaCatalog multisrc extension (#6399)
* Create Ww3Read.kt

* Added Ww3ReadGenerator.kt

* Added Overrieds and icon

* Added More Sources

https://ww1.readjujutsukaisen.com
https://ww1.readtowerofgod.com
https://ww2.readhxh.com
https://readsololeveling.org
https://ww3.readneverland.com

* Update Ww3ReadGenerator.kt

* Removed old Names

* Added files with new name

* Removed files with old name

* Added files with new name
2021-04-04 16:34:03 -04:00

15 lines
692 B
Kotlin

package eu.kanade.tachiyomi.extension.en.readhunterxhuntermangaonline
import eu.kanade.tachiyomi.multisrc.mangacatalog.MangaCatalog
import eu.kanade.tachiyomi.source.model.MangasPage
import eu.kanade.tachiyomi.util.asJsoup
class ReadHunterxHunterMangaOnline : MangaCatalog("Read Hunter x Hunter Manga Online", "https://ww2.readhxh.com", "en") {
override val sourceList = listOf(
Pair("Hunter x Hunter", "$baseUrl/manga/hunter-x-hunter/"),
Pair("Colored", "$baseUrl/manga/hunter-x-hunter-colored/"),
Pair("Level E", "$baseUrl/manga/level-e/"),
Pair("Yu Yu Hakusho", "$baseUrl/manga/yu-yu-hakusho/"),
).sortedBy { it.first }.distinctBy { it.second }
}