forked from IBMa/equal-access
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest_Chrome.json
54 lines (54 loc) · 1.38 KB
/
manifest_Chrome.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
{
"manifest_version": 3,
"name": "IBM Equal Access Accessibility Checker",
"description": "A web browser extension for checking accessibility issues",
"author": "IBM",
"version": "3.0.0",
"homepage_url": "https://ibm.com/able",
"icons": {
"16": "assets/[email protected]",
"32": "assets/[email protected]",
"64": "assets/[email protected]",
"128": "assets/[email protected]"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"permissions": [
"tabs",
"storage",
"unlimitedStorage",
"scripting",
"activeTab"
],
"host_permissions": [
"*://*/*",
"<all_urls>"
],
"action": {
"default_title": "IBM Equal Access Accessibility Checker",
"default_icon": {
"16": "assets/[email protected]",
"32": "assets/[email protected]",
"48": "assets/[email protected]",
"64": "assets/[email protected]",
"128": "assets/[email protected]"
},
"default_popup": "popup.html"
},
"devtools_page": "devtools.html",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["viewKCM.js", "viewInspect.js"]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"incognito": "split"
}