Add Jobsibe (#1704)

Add jobsibe
This commit is contained in:
bapeey 2024-03-05 01:26:49 -05:00 committed by Draff
parent 46a6e5e7f3
commit 84664872c4
7 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Jobsibe'
extClass = '.Jobsibe'
themePkg = 'madara'
baseUrl = 'https://jobsibe.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,21 @@
package eu.kanade.tachiyomi.extension.es.jobsibe
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import java.text.SimpleDateFormat
import java.util.Locale
class Jobsibe : Madara(
"Jobsibe",
"https://jobsibe.com",
"es",
SimpleDateFormat("MMMM d, yyyy", Locale("es")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(2)
.build()
}