-
Notifications
You must be signed in to change notification settings - Fork 71
/
manifest.json
37 lines (37 loc) · 950 Bytes
/
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
{
"manifest_version": 2,
"name": "Anna Assistant",
"short_name": "Anna",
"version": "1.4",
"description": "Your Personal Assistant on Google Chrome.",
"icons": {
"16":"img/icon16.png",
"48":"img/icon48.png",
"128":"img/icon.png"
},
"background" : {
"scripts" : ["js/jquery.min.js","js/on-off-switch.js","js/on-off-switch-onload.js","background.js"],
"persistent" : true
},
"browser_action": {
"default_icon": "img/icon.png",
"default_title" : "Anna",
"default_popup" : "popup.html"
},
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
"permissions": [
"webNavigation", "*://*/*",
"<all_urls>",
"activeTab",
"bookmarks",
"identity.email",
"identity",
"tabs",
"storage",
"https://ajax.googleapis.com/",
"http://clients1.google.com/complete/search"
],
"web_accessible_resources": [
"img/*"
]
}