Add LeitorDeManga (#2280)

* Add LeitorDeManga

* Add icons

* Remove isNfsw

* Fix extension name

* Replace icons

* Add custom path
This commit is contained in:
Chopper 2024-04-07 01:35:44 -03:00 committed by GitHub
parent 9b1656a662
commit 13f3d94477
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Leitor de Mangá'
extClass = '.LeitorDeManga'
themePkg = 'madara'
baseUrl = 'https://leitordemanga.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

View File

@ -0,0 +1,21 @@
package eu.kanade.tachiyomi.extension.pt.leitordemanga
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import java.text.SimpleDateFormat
import java.util.Locale
import java.util.concurrent.TimeUnit
class LeitorDeManga : Madara(
"Leitor de Mangá",
"https://leitordemanga.com",
"pt-BR",
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
) {
override val mangaSubString = "ler-manga"
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(1, 2, TimeUnit.SECONDS)
.build()
}