-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
57 lines (57 loc) · 1.46 KB
/
manifest.json
File metadata and controls
57 lines (57 loc) · 1.46 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
55
56
57
{
"manifest_version": 2,
"name": "Deezer Mediakeys Reloaded",
"version": "1.0.1",
"description": "Enable the use of MediaKeys for Deezer",
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"options_page": "options.html",
"permissions": [
"*://*.deezer.com/*",
"notifications",
"storage"
],
"background": {
"scripts": [
"js/background.js"
],
"persistent": false
},
"commands": {
"PLAY-PAUSE-MK": {
"suggested_key": { "default": "MediaPlayPause" },
"description": "Play/Pause Key",
"global": true
},
"PREV-MK": {
"suggested_key": { "default": "MediaPrevTrack" },
"description": "Prev Key",
"global": true
},
"NEXT-MK": {
"suggested_key": { "default": "MediaNextTrack" },
"description": "Next Key",
"global": true
},
"STOP-MK": {
"suggested_key": { "default": "MediaStop" },
"description": "Stop Key",
"global": true
}
},
"icons": {
"16": "img/icon_16.png",
"128": "img/icon_128.png"
},
"content_scripts": [{
"matches": [
"*://*.deezer.com/*"
],
"js": [
"js/app.js"
],
"run_at": "document_idle"
}]
}