Add Monsure (#10241)

This commit is contained in:
Chopper 2025-08-23 12:03:36 -03:00 committed by Draff
parent 00ec365e30
commit 1c8cd221fd
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Monsure'
extClass = '.Monsure'
themePkg = 'madara'
baseUrl = 'https://monsuresu.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -0,0 +1,24 @@
package eu.kanade.tachiyomi.extension.pt.monsure
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class Monsure : Madara(
"Monsure",
"https://monsuresu.com",
"pt-BR",
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
override val popularMangaUrlSelector = "${super.popularMangaUrlSelector}:not([href*=instagram])"
}