-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
56 lines (56 loc) · 1.13 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
{
"manifest_version": 2,
"name": "__MSG_extName__",
"short_name": "__MSG_extShortName__",
"description": "__MSG_extDescription__",
"default_locale": "en",
"version": "2.0",
"icons": {
"16": "soundcloud.png",
"48": "soundcloud.png",
"128": "soundcloud.png"
},
"browser_action": {
"default_icon": {
"19": "soundcloud.png",
"38": "soundcloud.png"
},
"default_popup": "popup.html"
},
"background": {
"page": "background.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"commands": {
"play-or-pause": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+A"
},
"description": "Play or pause song",
"global": true
},
"repeat": {
"description": "Toggle repeat current",
"global": true
},
"next": {
"description": "Go to next song",
"global": true
},
"previous": {
"description": "Go to previous song",
"global": true
}
},
"permissions": [
"activeTab",
"*://soundcloud.com/*",
"*://extensions/*",
"tabs",
"storage"
]
}