18 lines
533 B
Kotlin
18 lines
533 B
Kotlin
package eu.kanade.tachiyomi.extension.es.samuraiscan
|
|
|
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
import java.text.SimpleDateFormat
|
|
import java.util.Locale
|
|
|
|
class SamuraiScan : Madara(
|
|
"SamuraiScan",
|
|
"https://samuraiscan.com",
|
|
"es",
|
|
SimpleDateFormat("MMMM d, yyyy", Locale("es")),
|
|
) {
|
|
override val useNewChapterEndpoint = true
|
|
|
|
override val mangaDetailsSelectorDescription = "div.summary_content div.manga-summary"
|
|
override val mangaDetailsSelectorStatus = "div.summary_content div.manga-authors"
|
|
}
|