Add Siimanga ()

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
src/id/siimanga2
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/id/siimanga2

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

(image error) Size: 6.8 KiB

Binary file not shown.

After

(image error) Size: 3.4 KiB

Binary file not shown.

After

(image error) Size: 11 KiB

Binary file not shown.

After

(image error) Size: 23 KiB

Binary file not shown.

After

(image error) 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)
}
}