forked from afreakk/ChromeAudioVisualizerExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
48 lines (48 loc) · 1.41 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
{
"manifest_version": 2,
"name": "AudioVisualizer",
"description": "Audio Visualizer, works on any website. Press icon or 'Ctrl+Q' to start/stop. ♪ ┐(・。・┐) ",
"version": "6.0.12",
"permissions": ["activeTab", "storage", "tabCapture"],
"icons": {
"16": "gfx/icon16.png",
"48": "gfx/icon48.png",
"128": "gfx/icon128.png"
},
"options_page": "options/index.html",
"browser_action": {
"default_icon": {
"16": "gfx/icon16.png",
"48": "gfx/icon48.png",
"128": "gfx/icon128.png"
},
"default_title": "AudioVisualizer"
},
"commands": {
"open-options": {
"suggested_key": {
"default": "Alt+Q"
},
"description": "Opens Options"
},
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Q"
},
"description": "Begins the show"
}
},
"background": {
"scripts": [
"js/storageLayer.js",
"settings/setting.js",
"backgroundScripts/openOptions.js",
"backgroundScripts/butterAudioProcessor.js",
"backgroundScripts/onInstall.js",
"backgroundScripts/extensionFrontEnd.js",
"backgroundScripts/main.js",
"scriptsToInject.js"
],
"persistent": false
}
}