forked from ffoodd/a11y.css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest-chrome.json
More file actions
50 lines (50 loc) · 1.03 KB
/
manifest-chrome.json
File metadata and controls
50 lines (50 loc) · 1.03 KB
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
{
"manifest_version": 2,
"name": "a11y.css",
"description": "a11y.css provides warnings about possible risks and mistakes that exist in HTML.",
"version": "1.2.1",
"permissions": [
"activeTab",
"storage"
],
"browser_action": {
"default_title": "a11y.css",
"default_popup": "popup/index.html",
"default_icon": {
"19": "icons/a11y-css_19.png",
"38": "icons/a11y-css_38.png"
}
},
"background": {
"scripts": [
"/scripts/browser-polyfill.min.js",
"/scripts/background/main.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/scripts/browser-polyfill.min.js",
"/scripts/injected/checkalts.js",
"/scripts/injected/textspacing.js"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icons/a11y-css_16.png",
"48": "icons/a11y-css_48.png",
"128": "icons/a11y-css_128.png"
},
"web_accessible_resources": [
"icons/info.svg",
"icons/ko.svg",
"icons/ok.svg",
"scripts/injected/checkalts.js",
"css/*"
]
}