forked from IsSuEat/open-livestreamer-firefox-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (59 loc) · 1.82 KB
/
package.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "open-livestreamer",
"title": "Open Livestreamer",
"id": "jid1-Y6BhyMM8GoZ3eA@jetpack",
"description": "Open livestreamer directly from your browser",
"author": "issue",
"license": "GPL-3.0",
"version": "2.1.0",
"main": "lib/main.js",
"permissions": {
"private-browsing": true
},
"preferences": [{
"name": "path",
"title": "Path to livestreamer",
"description": "Path to livestreamer executable",
"type": "string",
"value": ""
}, {
"name": "quality",
"title": "Stream quality",
"description": "Change the quality of the stream, options are low, medium, best",
"type": "string",
"value": "best"
}, {
"name": "optargs",
"title": "Optional arguments for livestreamer",
"description": "You can pass livestreamer options here in the form of --foo=bar,--baz=foo. Check livestreamer -h for what is available",
"type": "string"
},{
"name": "qualityselector",
"title": "Quality selection menu",
"description": "Display a quality selection window everytime livestreamer is launched. ",
"type": "bool",
"value": true
},{
"name": "togglecontextmenu",
"title": "Enable the context menu entry",
"description": "Shows a context menu entry to launch livestreamer (requires Firefox restart)",
"type": "bool",
"value": true
},{
"name": "theme",
"title": "Theme",
"description": "Use the light or dark theme or let Open in Livestreamer detect it automatically (results may vary).",
"type": "menulist",
"value": "auto",
"options": [{
"value": "auto",
"label": "Auto"
}, {
"value": "light",
"label": "Light"
}, {
"value": "dark",
"label": "Dark"
}]
}]
}