-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathmanifest.json
79 lines (77 loc) · 2.13 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "Waltz",
"version": "2.0.13",
"manifest_version": 2,
"description": "A modern account manager for the web.",
"browser_action": {
"default_icon": {
"19": "/static/img/waltz-19.png",
"38": "/static/img/waltz-38.png"
},
"default_title": "Waltz",
"default_popup": "html/popup.html"
},
"background": {
"scripts": [
"static/js/vendor/lodash.min.js",
"static/js/vendor/jquery.min.js",
"static/js/vendor/debug.js",
"static/js/vendor/pubnub.js",
"static/js/shared/utils.js",
"static/js/vendor/raven.min.js",
"static/js/background/crypto.js",
"static/js/shared/storage.js",
"static/js/vendor/aes.js",
"static/js/vendor/mixpanel.min.js",
"static/js/shared/analytics.js",
"static/js/background/delegate.js",
"/static/js/background/setup.js"
]
},
"content_scripts": [{
"matches": ["*://*/*"],
"js": [
"static/js/vendor/lodash.min.js",
"static/js/vendor/jquery.min.js",
"static/js/vendor/debug.js",
"static/js/vendor/mutation-summary.js",
"static/js/vendor/blur.js",
"static/js/shared/utils.js",
"static/js/shared/templater.js",
"static/js/shared/storage.js",
"static/js/shared/sharer.js",
"static/js/client/message.js",
"static/js/client/onboarder.js",
"static/js/vendor/mixpanel.min.js",
"static/js/shared/analytics.js",
"static/js/client/waltz.js"
],
"css": ["/static/css/waltz.css"]
}],
"permissions": [
"*://*/*",
"storage",
"cookies",
"tabs",
"notifications",
"contextMenus",
"webRequest",
"webRequestBlocking"
],
"icons": {
"16": "/static/img/waltz-16.png",
"48": "/static/img/waltz-48.png",
"128": "/static/img/waltz-128.png"
},
"options_page": "html/options.html",
"homepage_url": "http://getwaltz.com",
"web_accessible_resources": [
"/static/img/*",
"/html/templates.html",
"/manifest.json"
],
"content_security_policy": "script-src 'self' https://connect.facebook.net https://cdn.mxpnl.com; object-src 'self'",
"sandbox": {
"pages": ["/html/templates.html"]
}
}