Added MSYToon (#7971)

This commit is contained in:
mrtear 2025-03-08 15:50:50 +05:00 committed by Draff
parent 6098ea8e35
commit 789e2ca044
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 25 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.en.msytoon
import eu.kanade.tachiyomi.multisrc.keyoapp.Keyoapp
class MSYToon : Keyoapp(
"MSYToon",
"https://msytoon.com",
"en",
) {
override val descriptionSelector: String = "div.grid > div.overflow-hidden > p"
override val statusSelector: String = "div[alt=Status]"
override val authorSelector: String = "div[alt=Author]"
override val artistSelector: String = "div[alt=Artist]"
override val genreSelector: String = "div[alt='Series Type']"
}