-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
50 lines (50 loc) · 1.23 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
{
"name": "Spotify Controls",
"version": "0.0.0.2",
"description": "Extension to control Spotify player on Extension tab",
"permissions": ["storage", "tabs"],
"minimum_chrome_version": "55",
"content_scripts": [
{
"matches": ["https://open.spotify.com/*"],
"js": ["contentScript.js"]
}
],
"commands": {
"spotify-pause-key": {
"suggested_key": {
"default": "Ctrl+Shift+2"
},
"description": "Spotify stop command",
"global": true
},
"spotify-resume-key": {
"suggested_key": {
"default": "Ctrl+Shift+3"
},
"description": "Spotify resume command",
"global": true
},
"spotify-forward-key": {
"suggested_key": {
"default": "Ctrl+Shift+4"
},
"description": "Spotify forward command",
"global": true
}
},
"browser_action": {
"default_icon": {
"16": "images/silence16.png",
"32": "images/silence32.png",
"48": "images/silence64.png",
"128": "images/silence128.png"
},
"default_popup": "popup.html"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"manifest_version": 2
}