Add MangaTrend ()

This commit is contained in:
Chopper 2024-05-22 02:46:35 -03:00 committed by Draff
parent cc7cc7c9f7
commit d5c8b1dd1f
7 changed files with 26 additions and 0 deletions
src/ar/mangatrend
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/ar/mangatrend

@ -0,0 +1,9 @@
ext {
extName = 'Manga Trend'
extClass = '.MangaTrend'
themePkg = 'mangathemesia'
baseUrl = 'https://mangaatrend.net'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

(image error) Size: 7.4 KiB

Binary file not shown.

After

(image error) Size: 3.7 KiB

Binary file not shown.

After

(image error) Size: 12 KiB

Binary file not shown.

After

(image error) Size: 24 KiB

Binary file not shown.

After

(image error) Size: 39 KiB

@ -0,0 +1,17 @@
package eu.kanade.tachiyomi.extension.ar.mangatrend
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class MangaTrend : MangaThemesia(
"Manga Trend",
"https://mangaatrend.net",
"ar",
dateFormat = SimpleDateFormat("MMMMM dd, yyyy", Locale("ar")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}