Add MangaLivreTo (#11706)

* Add MangaLivreTo

* Remove unneeded code
This commit is contained in:
Chopper 2025-11-18 16:29:38 -03:00 committed by Draff
parent df3319f128
commit 8c230e25c3
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Manga Livre.to'
extClass = '.MangaLivreTo'
themePkg = 'madara'
baseUrl = 'https://mangalivre.to'
overrideVersionCode = 1
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 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,21 @@
package eu.kanade.tachiyomi.extension.pt.mangalivreto
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class MangaLivreTo : Madara(
"Manga Livre.to",
"https://mangalivre.to",
"pt-BR",
SimpleDateFormat("dd 'de' MMMM 'de' yyyy", Locale("pt")),
) {
override val client = super.client.newBuilder()
.rateLimit(2)
.build()
override fun chapterListSelector() = ".listing-chapters-wrap .chapter-box"
override fun chapterDateSelector() = ".chapter-date"
}