-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
30 lines (30 loc) · 874 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
{
"manifest_version": 3,
"name": "github-a11y",
"description": "This extension helps increase accessibility mindfulness while using GitHub",
"devtools_page": "./devtools-feedback/devtools.html",
"version": "0.6",
"content_scripts": [
{
"matches": ["https://*.github.com/*", "https://github.com/*"],
"css": ["styles.css"],
"js": ["contentScript.js"]
},
{
"matches": ["https://*.github.com/*", "https://github.com/*"],
"css": ["./devtools-feedback/contentScriptStyles.css"],
"js": ["./devtools-feedback/contentScript.js"]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": ["tabs", "webNavigation"],
"host_permissions": ["*://*.github.com/*", "*://github.com/*"],
"web_accessible_resources": [
{
"resources": ["src/*"],
"matches": ["<all_urls>"]
}
]
}