forked from curtislacy/GMail-Chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
44 lines (44 loc) · 1012 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
38
39
40
41
42
43
44
{
"name": "Engine",
"version": "13.10.1",
"description": "Real-time, relevant knowledge inside Gmail",
"background": {
"scripts": ["jquery-1.8.2.min.js","async.min.js","background.js" ]
},
"manifest_version": 2,
"icons": {
"48" : "sample-48.png",
"128" : "sample-128.png"
},
"content_scripts": [
{
"matches": [ "*://mail.google.com/*" ],
"js": [
"jquery-1.8.2.min.js",
"async.min.js",
"bootstrap.js",
"options.js"
]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": [
"https://apps.engine.co/*",
"https://preview.engine.co/*",
"https://127.0.0.1:3000/*",
"storage",
"contextMenus",
"tabs"
],
"web_accessible_resources": [
"logo_engine_dark.png"
],
"options_page": "options.html",
"browser_action": {
"default_icon": {
"19" : "logo_engine_dark.png",
"38" : "logo_engine_dark.png"
},
"default_title": "Engine Inc."
}
}