-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
62 lines (62 loc) · 1.38 KB
/
manifest.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
61
62
{
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"version": "2.1",
"default_locale": "ru",
"homepage_url": "https://github.com/galulex/vk_audio",
"background": {
"scripts": ["background.js"]
},
"permissions": ["tabs", "*://*.vk.com/audio*"],
"browser_action": {
"default_title": "VK Player",
"default_popup": "popup.html"
},
"options_page": "options.html",
"icons": { "32": "icon32.png",
"128": "icon128.png"
},
"commands": {
"Play / Pause": {
"suggested_key": {
"windows": "Alt+S",
"mac": "Alt+S",
"chromeos": "Alt+S",
"linux": "Alt+S"
},
"description": "__MSG_play__",
"global": true
},
"Forward": {
"suggested_key": {
"windows": "Alt+F",
"mac": "Alt+F",
"chromeos": "Alt+F",
"linux": "Alt+F"
},
"description": "__MSG_forward__",
"global": true
},
"Backward": {
"suggested_key": {
"windows": "Alt+B",
"mac": "Alt+B",
"chromeos": "Alt+B",
"linux": "Alt+B"
},
"description": "__MSG_backward__",
"global": true
},
"Add": {
"suggested_key": {
"windows": "Alt+A",
"mac": "Alt+A",
"chromeos": "Alt+A",
"linux": "Alt+A"
},
"description": "__MSG_add__",
"global": true
}
},
"manifest_version": 2
}