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: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

View File

@@ -0,0 +1,23 @@
package eu.kanade.tachiyomi.extension.en.readallmanga
import eu.kanade.tachiyomi.multisrc.readallcomics.ReadAllComics
import eu.kanade.tachiyomi.source.model.SManga
import org.jsoup.nodes.Document
class ReadAllManga : ReadAllComics("ReadAllManga", "https://readallmanga.com", "en") {
override fun searchType() = "manga"
override fun popularMangaTitleSelector() = "div > center"
override fun mangaDetailsParse(document: Document): SManga {
return super.mangaDetailsParse(document).apply {
genre = document.select(mangaDetailsGenreSelector()).text()
.split("").joinToString { it.trim() }
}
}
override fun mangaDetailsDescriptionSelector() = ".b > span"
override fun mangaDetailsGenreSelector() = ".b > p > strong:nth-child(8)"
override fun mangaDetailsAuthorSelector() = ".b > p > strong:nth-child(5)"
}