forked from nazrhom/soundcloudController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
54 lines (50 loc) · 1.05 KB
/
manifest.json
File metadata and controls
54 lines (50 loc) · 1.05 KB
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
{
"manifest_version": 2,
"name": "__MSG_extName__",
"short_name": "__MSG_extShortName__",
"description": "__MSG_extDescription__",
"default_locale": "en",
"version": "1.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"
},
"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/*",
"tabs"
]
}