parent
e6a3201790
commit
779560170b
|
@ -0,0 +1,10 @@
|
||||||
|
ext {
|
||||||
|
extName = 'Manhwa Freake'
|
||||||
|
extClass = '.ManhwaFreake'
|
||||||
|
themePkg = 'mangathemesia'
|
||||||
|
baseUrl = 'https://manhwafreake.com'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
isNsfw = true
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 5.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
Binary file not shown.
After Width: | Height: | Size: 7.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
|
@ -0,0 +1,15 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.en.manhwafreake
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||||
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||||
|
|
||||||
|
class ManhwaFreake : MangaThemesia(
|
||||||
|
"Manhwa Freake",
|
||||||
|
"https://manhwafreake.com",
|
||||||
|
"en",
|
||||||
|
mangaUrlDirectory = "/series",
|
||||||
|
) {
|
||||||
|
override val client = super.client.newBuilder()
|
||||||
|
.rateLimit(3)
|
||||||
|
.build()
|
||||||
|
}
|
Loading…
Reference in New Issue