-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
53 lines (46 loc) · 1.14 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
{
"manifest_version": 2,
"name": "Whitenoisefy",
"version": "1.5.0",
"description": "White noise for you!.",
"icons": {
"16": "icons/icon-16.png",
"22": "icons/icon-22.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png",
"256": "icons/icon-256.png",
"512": "icons/icon-512.png",
"1024": "icons/icon.png"
},
"permissions": [
"activeTab"
],
"background": {
"scripts": ["content_scripts/whitenoisefy.js"]
},
"browser_action": {
"default_icon": "icons/icon.png",
"default_title": "Whitenoisefy",
"default_popup": "popup/index.html"
},
"commands": {
"play-white-noise": {
"suggested_key": { "default": "Alt+W" },
"description": "Play white noise"
},
"play-pink-noise": {
"suggested_key": { "default": "Alt+P" },
"description": "Play pink noise"
},
"play-brown-noise": {
"suggested_key": { "default": "Alt+B" },
"description": "Play brown noise"
},
"stop-noise": {
"suggested_key": { "default": "Alt+S" },
"description": "Stop noise"
}
}
}