-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathmanifest.json
More file actions
40 lines (34 loc) · 878 Bytes
/
manifest.json
File metadata and controls
40 lines (34 loc) · 878 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
33
34
35
36
37
38
39
40
{
"manifest_version": 2,
"name": "D3 Deconstructor",
"description": "This extension allows the user to deconstruct D3 visualizations on a page.",
"version": "1.0.4",
"icons": {
"16": "decon-icon.png",
"128": "decon-icon.png"
},
"content_scripts": [
{
"matches": ["file:///*/*", "http://*/*", "https://*/*"],
"css": ["content.css"],
"js": ["js/content.js", "node_modules/jquery/dist/jquery.js"]
}
],
"background": {
"scripts": ["js/background.js"]
},
"browser_action": {
"default_icon": "decon-icon.png",
"default_title": "D3 Deconstructor"
},
"permissions": [
"tabs",
"activeTab",
"contextMenus"
],
"web_accessible_resources": [
"node_modules/*",
"dist/*",
"js/*"
]
}