mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
added Serienstream & Movie4k
This commit is contained in:
parent
839ec22f67
commit
571f455100
10 changed files with 76 additions and 44 deletions
|
@ -1,12 +1,12 @@
|
|||
// use an integer for version numbers
|
||||
version = 4
|
||||
version = 5
|
||||
|
||||
|
||||
cloudstream {
|
||||
language = "de"
|
||||
// All of these properties are optional, you can safely remove them
|
||||
|
||||
// description = "Lorem Ipsum"
|
||||
description = "Include: Serienstream"
|
||||
authors = listOf("Hexated")
|
||||
|
||||
/**
|
||||
|
|
|
@ -13,12 +13,11 @@ import org.jsoup.nodes.Document
|
|||
import org.jsoup.nodes.Element
|
||||
import java.net.URI
|
||||
|
||||
class Aniworld : MainAPI() {
|
||||
open class Aniworld : MainAPI() {
|
||||
override var mainUrl = "https://aniworld.to"
|
||||
override var name = "Aniworld"
|
||||
override val hasMainPage = true
|
||||
override var lang = "de"
|
||||
override val hasDownloadSupport = true
|
||||
|
||||
override val supportedTypes = setOf(
|
||||
TvType.Anime,
|
||||
|
|
|
@ -10,6 +10,7 @@ class AniworldPlugin: Plugin() {
|
|||
override fun load(context: Context) {
|
||||
// All providers should be added in this manner. Please don't edit the providers list directly.
|
||||
registerMainAPI(Aniworld())
|
||||
registerMainAPI(Serienstream())
|
||||
registerExtractorAPI(Urochsunloath())
|
||||
registerExtractorAPI(Simpulumlamerop())
|
||||
registerExtractorAPI(Dooood())
|
||||
|
|
12
Aniworld/src/main/kotlin/com/hexated/Serienstream.kt
Normal file
12
Aniworld/src/main/kotlin/com/hexated/Serienstream.kt
Normal file
|
@ -0,0 +1,12 @@
|
|||
package com.hexated
|
||||
|
||||
import com.lagradost.cloudstream3.TvType
|
||||
|
||||
class Serienstream : Aniworld() {
|
||||
override var mainUrl = "https://s.to"
|
||||
override var name = "Serienstream"
|
||||
override val supportedTypes = setOf(
|
||||
TvType.Movie,
|
||||
TvType.TvSeries,
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue