-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmanifest.json
35 lines (35 loc) · 878 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
{
"name": "Colorblindly",
"version": "2.2",
"manifest_version": 3,
"host_permissions": ["<all_urls>"],
"description": "Simulates colorblindness in your web browser.",
"homepage_url": "https://github.com/oftheheadland",
"icons": {
"16": "images/eyecon.png",
"48": "images/eyecon.png",
"128": "images/eyecon.png"
},
"action": {
"default_title": "Colorblindly",
"default_popup": "popup/popup.html"
},
"permissions": [
"activeTab",
"storage",
"scripting"
],
"web_accessible_resources": [{
"resources": ["filters/achromatomaly.js",
"filters/achromatopsia.js",
"filters/deuteranomaly.js",
"filters/deuteranopia.js",
"filters/normal.js",
"filters/protanomaly.js",
"filters/protanopia.js",
"filters/tritanomaly.js",
"filters/tritanopia.js"],
"matches": [],
"extension_ids": []
}]
}