-
Notifications
You must be signed in to change notification settings - Fork 18
/
manifest.json
57 lines (57 loc) · 1.24 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
{
"name": "Verto Browser Extension",
"description": "Verto is an extension for accessing blockchain enabled distributed applications, or Dapps in your normal Chrome or Firefox browser! ",
"version": "1.0.0",
"manifest_version": 2,
"icons": {
"16": "icons/favicon-32x32.png",
"48": "icons/favicon-32x32.png",
"128": "icons/favicon-32x32.png"
},
"browser_action": {
"default_title": "verto-browser-extension",
"default_popup": "www/index.html"
},
"background": {
"scripts": [
"www/js/app.js",
"js/background.js",
"www/js/bex-background.js",
"www/js/chunk-common.js",
"www/js/vendor.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"www/js/bex-content-script.js",
"js/content-script.js"
],
"css": [
"css/content-css.css"
]
}
],
"permissions": [
"<all_urls>",
"storage",
"tabs",
"activeTab"
],
"externally_connectable": {
"matches": [
"*://localhost/*"
]
},
"web_accessible_resources": [
"www/*",
"js/*",
"css/*",
"<all_urls>"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}