-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (26 loc) · 750 Bytes
/
manifest.json
File metadata and controls
32 lines (26 loc) · 750 Bytes
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
{
"description": "Create a web extension (pure frontend application) which can achieve the same result as the old WebAudioAPI",
"manifest_version": 2,
"name": "devtools-WebAudio",
"version": "0.1.3",
"author": "Brandon Fontany-Legall",
"homepage_url": "https://github.com/FontanyLegall-Brandon/devtools-WebAudio",
"icons": {
"48": "icons/icon48.png",
"96": "icons/icon96.png"
},
"background": {
"scripts": ["node_modules/d3/build/d3.js","node_modules/dagre-d3/dist/dagre-d3.js"]
},
"permissions": [
"<all_urls>"
],
"content_scripts":
[
{
"matches":["*://*.mozilla.org/*"],
"js":["background_scripts/background.js"]
}
],
"devtools_page": "devtools/devtools-page.html"
}