forked from johnhoffm/ColorCue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
41 lines (41 loc) · 794 Bytes
/
manifest.json
File metadata and controls
41 lines (41 loc) · 794 Bytes
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
{
"manifest_version": 2,
"name": "ColorCue",
"version": "0.0.1",
"description": "Color contrast enhancer for color blind individuals",
"homepage_url": "https://github.com/johnhoffm/ColorCue",
"icons": {
"48": "icons/logo-48.png",
"32": "icons/logo-32.png"
},
"permissions": [
"activeTab",
"storage",
"tabs",
"menus"
],
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"daltonize.js", "colorcue.js"
],
"run_at": "document_idle"
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": {
"32": "icons/logo-32.png"
},
"default_title": "ColorCue",
"default_popup": "popup/popup.html"
}
}