-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
107 lines (106 loc) · 2.91 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "Spotify Hotkeys",
"description": "Keyboard shortcuts to play, pause, next and previous tracks in Spotify Web Player.",
"manifest_version": 2,
"author": "TsunDoge",
"version": "1.5.5",
"homepage_url": "https://github.com/TsunDoge/spotify-hotkeys-firefox",
"applications": {
"gecko": {
"id": "{82a01566-f5cf-4c86-9aec-7da38b2a7385}"
}
},
"icons": {
"64": "icons/logo-64.png"
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [{
"matches": [
"https://open.spotify.com/*",
"https://play.spotify.com/*"
],
"js": [
"notifications.js"
],
"run_at": "document_end"
}],
"commands": {
"play-pause": {
"suggested_key": {
"default": "Alt+Shift+W"
},
"description": "Play/pause the current song"
},
"next": {
"suggested_key": {
"default": "Alt+Shift+Right"
},
"description": "Next track"
},
"previous": {
"suggested_key": {
"default": "Alt+Shift+Left"
},
"description": "Previous track"
},
"shuffle": {
"suggested_key": {
"default": "Alt+Shift+D"
},
"description": "Shuffle playlist"
},
"repeat": {
"suggested_key": {
"default": "Alt+Shift+R"
},
"description": "Repeat playlist"
},
"play-album": {
"suggested_key": {
"default": "Alt+Shift+G"
},
"description": "Play/pause the current playlist/album"
},
"save-track": {
"suggested_key": {
"default": "Alt+Shift+L"
},
"description": "Save track"
},
"mute": {
"suggested_key": {
"default": "Alt+Shift+M"
},
"description": "Mute/Unmute"
},
"volume-up": {
"suggested_key": {
"default": "Alt+Shift+Up"
},
"description": "Volume up"
},
"volume-down": {
"suggested_key": {
"default": "Alt+Shift+Down"
},
"description": "Volume down"
}
},
"permissions": ["https://open.spotify.com/*", "https://play.spotify.com/*", "tabs", "storage", "notifications"],
"browser_action": {
"default_icon": "icons/logo-32.png",
"theme_icons": [{
"light": "icons/logo-32-light.png",
"dark": "icons/logo-32.png",
"size": 32
}],
"default_title": "Spotify",
"default_popup": "panel/panel.html"
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
}
}