Add ManhaTok (#3180)

* Add ManhaTok

* Change rateLimit

* Remove unused import
This commit is contained in:
Chopper 2024-05-22 02:45:33 -03:00 committed by Draff
parent e1879e0528
commit cc7cc7c9f7
7 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Manhatok'
extClass = '.Manhatok'
themePkg = 'zeistmanga'
baseUrl = 'https://manhatok.blogspot.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,10 @@
package eu.kanade.tachiyomi.extension.ar.manhatok
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class Manhatok : ZeistManga("Manhatok", "https://manhatok.blogspot.com", "ar") {
override val client = super.client.newBuilder()
.rateLimit(2)
.build()
}