-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmanifest.json
59 lines (59 loc) · 1.61 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
{
"background": {
"page": "html/background.html"
},
"browser_action": {
"default_icon": "img/eye.png",
"default_popup": "html/popup.html",
"default_title": "Eyebrowse"
},
"content_scripts": [
{
"css": [
"css/values.css"
],
"js": [
"libs/jquery-1.8.2.min.js",
"libs/mustache.min.js",
"libs/underscore.min.js",
"libs/jquery.idle.js",
"js/common.js",
"js/prompt.js",
"js/idle-detection.js",
"js/values.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"description": "Eyebrowse by MIT CSAIL Haystack Group",
"icons": {
"128": "img/eye-128.png",
"16": "img/eye-16.png",
"48": "img/eye-48.png"
},
"manifest_version": 2,
"name": "Eyebrowse",
"permissions": [
"*://*/*",
"http://eyebrowse-staging.csail.mit.edu/*",
"http://eyebrowse.csail.mit.edu/*",
"https://eyebrowse.csail.mit.edu/*",
"http://localhost:8000/*",
"cookies",
"tabs",
"webNavigation"
],
"version": "0.0.122",
"web_accessible_resources": [
"css/prompt.css",
"html/prompt.html",
"img/pano-logo.png",
"img/star-off.png",
"img/star-on.png",
"img/star-half.png",
"img/star-off-disabled.png"
]
}