mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 10:22:47 +01:00
Add Nimemob (#3175)
This commit is contained in:
parent
37b89986a5
commit
371f76532c
10
src/id/nimemob/build.gradle
Normal file
10
src/id/nimemob/build.gradle
Normal file
@ -0,0 +1,10 @@
|
||||
ext {
|
||||
extName = 'Nimemob'
|
||||
extClass = '.Nimemob'
|
||||
themePkg = 'zeistmanga'
|
||||
baseUrl = 'https://www.nimemob.my.id'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/id/nimemob/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/id/nimemob/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.1 KiB |
BIN
src/id/nimemob/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/id/nimemob/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
BIN
src/id/nimemob/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/id/nimemob/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.2 KiB |
BIN
src/id/nimemob/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/id/nimemob/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
BIN
src/id/nimemob/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/id/nimemob/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
@ -0,0 +1,19 @@
|
||||
package eu.kanade.tachiyomi.extension.id.nimemob
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
|
||||
class Nimemob : ZeistManga("Nimemob", "https://www.nimemob.my.id", "id") {
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimit(3)
|
||||
.build()
|
||||
|
||||
override val popularMangaSelector = "div#PopularPosts2 div.grid > article"
|
||||
override val popularMangaSelectorTitle = "h3 a"
|
||||
override val popularMangaSelectorUrl = popularMangaSelectorTitle
|
||||
|
||||
override val mangaDetailsSelector = "main"
|
||||
override val mangaDetailsSelectorGenres = "dl dt:contains(Genre) + dd a"
|
||||
|
||||
override val pageListSelector = "article#reader div.separator"
|
||||
}
|
Loading…
Reference in New Issue
Block a user