Add MangaTR.net (#2890)

This commit is contained in:
Vetle Ledaal 2024-05-09 15:09:38 +00:00 committed by GitHub
parent d5e29b5809
commit 5624c9cf71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'MangaTR.net'
extClass = '.MangaTRNet'
themePkg = 'madara'
baseUrl = 'https://mangatr.net'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -0,0 +1,12 @@
package eu.kanade.tachiyomi.extension.tr.mangatrnet
import eu.kanade.tachiyomi.multisrc.madara.Madara
class MangaTRNet : Madara(
"MangaTR.net",
"https://mangatr.net",
"tr",
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = true
}