Add ReaperScansUnoriginal (#4315)

* Add ReaperScansUnoriginal

* Update ext name
This commit is contained in:
Chopper 2024-07-29 00:05:14 -03:00 committed by Draff
parent 362b739c88
commit 9e8187cd1f
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Reaper Scans (unoriginal)'
extClass = '.ReaperScansUnoriginal'
themePkg = 'mangathemesia'
baseUrl = 'https://reaper-scans.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.en.reaperscansunoriginal
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class ReaperScansUnoriginal : MangaThemesia(
"Reaper Scans (unoriginal)",
"https://reaper-scans.com",
"en",
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}