Add Siimanga (#3904)

This commit is contained in:
Vetle Ledaal 2024-07-07 14:21:28 +02:00 committed by Draff
parent 35d16330b1
commit 74c35b8734
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Siimanga'
extClass = '.Siimanga'
themePkg = 'mangathemesia'
baseUrl = 'https://siimanga.cyou'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 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: 39 KiB

View File

@ -0,0 +1,22 @@
package eu.kanade.tachiyomi.extension.id.siimanga2
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.GET
import eu.kanade.tachiyomi.source.model.Page
import okhttp3.Request
class Siimanga : MangaThemesia(
"Siimanga",
"https://siimanga.cyou",
"id",
) {
override val hasProjectPage = true
override fun imageRequest(page: Page): Request {
val newHeaders = headersBuilder()
.removeAll("Referer")
.build()
return GET(page.imageUrl!!, newHeaders)
}
}