-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhulu.json
26 lines (26 loc) · 1.2 KB
/
hulu.json
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
{
"name" : "Hulu",
"plugin" : "slyguy.hulu",
"priority" : 100,
"provider" : "Hulu",
"is_resolvable" : "true",
"make_playlist" : "true",
"assert" : {
"play_movie": ["title", "year"],
"play_episode": ["showname", "season", "episode"],
"search_movie": ["title"],
"search_episode": ["showname"]
},
"play_movie" : [
"plugin://slyguy.hulu/?_=search&query={title_url}",
{"title": "{title}", "year": "{year}"}
],
"play_episode" : [
"plugin://slyguy.hulu/?_=search&query={showname_url}",
{"title": "{showname}"},
{"title": "Season {season}"},
{"season": "{season}", "episode": "{episode}"}
],
"search_movie" : "plugin://slyguy.hulu/?_=search&query={title_url}",
"search_episode" : "plugin://slyguy.hulu/?_=search&query={showname_url}"
}