-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
58 lines (50 loc) · 1.42 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
{
"manifest_version": 2,
"name": "ecsy-devtools",
"description": "ECSY developer tool panel",
"author": "Fernando Serrano",
"homepage_url": "https://github.com/fernandojsg/ecsy-devtools",
"version": "0.1.4",
"icons": {
"32": "assets/icon_32_detected.png",
"48": "assets/icon_48_detected.png",
"64": "assets/icon_64_detected.png",
"128": "assets/icon_128_detected.png"
},
"browser_action" : {
"default_title": "ECSY",
"default_icon": {
"32": "assets/icon_32_disabled.png",
"48": "assets/icon_48_disabled.png",
"64": "assets/icon_64_disabled.png",
"128": "assets/icon_128_disabled.png"
},
"default_popup": "src/extension/popups/disabled.html"
},
"devtools_page": "src/extension/devtools.html",
"background": {
"page": "src/extension/background.html",
"persistent": false
},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["src/extension/contentScript.js"],
"run_at": "document_start"
}],
"web_accessible_resources": [
"src/content/*.js",
"src/extension/popups/*.html",
"src/vendor/*.js",
"assets/*.svg",
"assets/*.png",
"dist/*.svg"
],
"content_security_policy": "style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval'; connect-src *; frame-src *; object-src 'self'",
"permissions": [
"storage",
"tabs",
"file://*/*",
"http://*/*",
"https://*/*"
]
}