Add Siimanga (#3904)
This commit is contained in:
parent
35d16330b1
commit
74c35b8734
|
@ -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 |
|
@ -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)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue