-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
39 lines (36 loc) · 930 Bytes
/
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
{
"manifest_version": 2,
"name": "Soundcloud Media Keys",
"version": "1.0.1",
"description": "Control Soundcloud player using media keys.",
"content_scripts": [{
"matches": ["https://soundcloud.com/*"],
"js": ["inject.js"]
}],
"background": {
"scripts": ["background.js"]
},
"commands": {
"play-pause": {
"suggested_key": {
"default": "MediaPlayPause"
},
"description": "Play/Pause",
"global": true
},
"next": {
"suggested_key": {
"default": "MediaNextTrack"
},
"description": "Next Track",
"global": true
},
"prev": {
"suggested_key": {
"default": "MediaPrevTrack"
},
"description": "Previous Track",
"global": true
}
}
}