Revert "Add hanmanwuzhe source" (#5922)
Revert "Add hanmanwuzhe source (#5099)" This reverts commit adc6d00a5b5fad6f7cd678300494f5cbc61edcfe.
This commit is contained in:
parent
bdc4f38a6f
commit
1ad22ed47d
|
@ -1,10 +0,0 @@
|
|||
ext {
|
||||
extName = 'hanmanwuzhe'
|
||||
extClass = '.hanmanwuzhe'
|
||||
themePkg = 'mccms'
|
||||
baseUrl = 'https://www.hanmanwuzhe.com'
|
||||
overrideVersionCode = 1
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
Before Width: | Height: | Size: 6.3 KiB |
Binary file not shown.
Before Width: | Height: | Size: 3.2 KiB |
Binary file not shown.
Before Width: | Height: | Size: 9.2 KiB |
Binary file not shown.
Before Width: | Height: | Size: 17 KiB |
Binary file not shown.
Before Width: | Height: | Size: 26 KiB |
|
@ -1,22 +0,0 @@
|
|||
package eu.kanade.tachiyomi.extension.zh.hanmanwuzhe
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mccms.MCCMS
|
||||
import eu.kanade.tachiyomi.multisrc.mccms.MCCMSConfig
|
||||
import eu.kanade.tachiyomi.source.model.Page
|
||||
import eu.kanade.tachiyomi.util.asJsoup
|
||||
import okhttp3.Response
|
||||
|
||||
class hanmanwuzhe : MCCMS(
|
||||
"嘀嗒漫画",
|
||||
"https://www.hanmanwuzhe.com",
|
||||
"zh",
|
||||
MCCMSConfig(useMobilePageList = true),
|
||||
) {
|
||||
|
||||
override fun pageListParse(response: Response): List<Page> {
|
||||
val document = response.asJsoup()
|
||||
return document.select("div.chapterbox li.pic img").mapIndexed { idx, img ->
|
||||
Page(idx, imageUrl = img.attr("src"))
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue