forked from antoniy/mpv-youtube-dl-binding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.89 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
{
"name": "mpv-youtube-dl-binding",
"license": "MIT",
"author": "Antoniy Chonkov",
"version": "0.1.0-alpha.3",
"id": "jid1-6NrUw49Z9jFVxg@jetpack",
"description": "Watch flash videos from various sites using native player (like mpv) and youtube-dl.",
"homepage": "https://github.com/antoniy/mpv-youtube-dl-binding",
"icon": "data/icon_button.png",
"main": "lib/main.js",
"permissions": {
"private-browsing": true
},
"preferences": [
{
"name": "player",
"title": "Native player location",
"description": "Specify native player executable full path",
"type": "string",
"value": "/usr/bin/mpv"
},
{
"name": "hotkey",
"title": "Hotkey",
"description": "Specify hotkey binding to start the player for current page",
"type": "string",
"value": "accel-alt-m"
},
{
"name": "params",
"title": "Additional player parameters",
"description": "Specify additional parameters to pass the native player when started. Leave empty if none are required. Use %%url%% placeholder to be able to pass video link as a parameter (useful when using custom script to execute additional logic).",
"type": "string",
"value": ""
},
{
"name": "ytStartPlAtIndex",
"title": "Start playlist playback from the selected video",
"description": "While in Youtube playlist, context menu command will play the playlist starting from the selected video.",
"type": "bool",
"value": false
},
{
"name": "altClick",
"title": "alt + click",
"description": "Launch player for a link on 'alt + click'",
"type": "bool",
"value": false
},
]
}