This repository was archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
67 lines (61 loc) · 1.29 KB
/
manifest.json
File metadata and controls
67 lines (61 loc) · 1.29 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
58
59
60
61
62
63
64
65
66
67
{
"manifest_version": 2,
"name": "Deezer Shortcut",
"description": "Shortcut to Deezer in window as app with media keys support",
"version": "1.1.8",
"minimum_chrome_version": "38",
"author": "Natrim",
"icons": {
"16": "assets/icon_16.png",
"32": "assets/icon_32.png",
"64": "assets/icon_64.png",
"128": "assets/icon_128.png"
},
"offline_enabled": true,
"permissions": [
"storage",
"unlimitedStorage",
"notifications",
"webview",
"*://deezer.com/",
"*://api.deezer.com/",
"*://orange.deezer.com/",
"*://*.deezer.com/"
],
"commands": {
"NEXT-MK": {
"description": "Next Key",
"global": true,
"suggested_key": {
"default": "MediaNextTrack"
}
},
"PLAY-PAUSE-MK": {
"description": "Play/Pause Key",
"global": true,
"suggested_key": {
"default": "MediaPlayPause"
}
},
"PREV-MK": {
"description": "Prev Key",
"global": true,
"suggested_key": {
"default": "MediaPrevTrack"
}
},
"STOP-MK": {
"description": "Stop Key",
"global": true,
"suggested_key": {
"default": "MediaStop"
}
}
},
"app": {
"background": {
"scripts": ["background.js"],
"persistent": false
}
}
}