Add PinkRosa (#8096)

This commit is contained in:
Chopper 2025-03-17 11:46:30 -03:00 committed by Draff
parent 74edbbae7d
commit db2813a793
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Pink Rosa'
extClass = '.PinkRosa'
themePkg = 'zeistmanga'
baseUrl = 'https://scanpinkrosa.blogspot.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.pt.pinkrosa
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class PinkRosa : ZeistManga(
"Pink Rosa",
"https://scanpinkrosa.blogspot.com",
"pt-BR",
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}