-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
64 lines (56 loc) · 1.42 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
{
"manifest_version": 2,
"name": "NoCoffee",
"description": "NoCoffee vision simulator",
"version": "0.5.0",
"homepage_url":"http://accessgarage.wordpress.com/2013/02/09/458/",
"applications": {
"gecko": {
"id": "nocoffee@accessgarage.wordpress.com",
"strict_min_version": "42.0"
}
},
"browser_action": {
"default_icon": "icon48.png",
"default_popup": "popup.html",
"default_title": "NoCoffee vision simulator"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["browser-polyfill.js", "contentscript.js"],
"run_at": "document_start"
}
],
"background": {
"scripts": ["browser-polyfill.js", "background.js"]
},
"permissions": [
"tabs", "<all_urls>"
],
"web_accessible_resources": [
"overlays/cataracts.png",
"overlays/diabetic-retinopathy.png",
"overlays/retinal-detachment.png",
"overlays/floater-1.png",
"overlays/floater-2.png",
"overlays/floater-3.png",
"overlays/floater-4.png",
"overlays/floater-5.png",
"overlays/floater-6.png",
"overlays/floater-7.png",
"overlays/floater-8.png",
"overlays/floater-9.png",
"overlays/floater-10.png",
"overlays/floater-11.png",
"overlays/floater-12.png",
"overlays/floater-13.png",
"overlays/floater-14.png",
"overlays/floater-15.png"
]
}