Add Yakshascans (#1661)

* Add Yakshascans

* Update extension and source name, fix class name

---------

Co-authored-by: stevenyomi <95685115+stevenyomi@users.noreply.github.com>
This commit is contained in:
airis 2024-03-03 03:44:14 +07:00 committed by GitHub
parent 5917dd98de
commit 19815fe7d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 31 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@ -0,0 +1,21 @@
package eu.kanade.tachiyomi.extension.en.yakshascans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
class YakshaScans : Madara(
"YakshaScans",
"https://yakshascans.com",
"en",
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(1)
.build()
override val useNewChapterEndpoint = true
override val mangaDetailsSelectorDescription: String =
"div.description-summary div.summary__content h3 + p, div.description-summary div.summary__content:not(:has(h3)), div.summary_content div.post-content_item > h5 + div, div.summary_content div.manga-excerpt"
}