Add MangaNinja (#4168)

This commit is contained in:
Chopper 2024-07-24 08:51:23 -03:00 committed by Draff
parent 637d3a6cdd
commit 888ec79b29
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 29 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -0,0 +1,20 @@
package eu.kanade.tachiyomi.extension.pt.manganinja
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class MangaNinja : Madara(
"Mangá Ninja",
"https://manganinja.com",
"pt-BR",
SimpleDateFormat("dd/MM/yyyy", Locale.ROOT),
) {
override val client = super.client.newBuilder()
.rateLimit(2)
.build()
override val useLoadMoreRequest = LoadMoreStrategy.Never
}