added Serienstream & Movie4k

This commit is contained in:
sora 2023-07-25 14:46:32 +07:00
parent 839ec22f67
commit 571f455100
10 changed files with 76 additions and 44 deletions

View file

@ -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")
/**

View file

@ -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,

View file

@ -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())

View 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,
)
}