-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (38 loc) · 1.03 KB
/
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
36
37
38
{
"manifest_version": 3,
"name": "Ability",
"description": "Ability is a browser extension that helps people with varying degrees of ability have more control over their browsing experience.",
"version": "1.2",
"permissions": ["contextMenus", "tts", "storage", "scripting", "activeTab"],
"action": {
"default_icon": {
"16": "assets/16.png",
"32": "assets/32.png",
"128": "assets/128.png"
},
"default_popup": "pop-up.html"
},
"icons": {
"16": "assets/16.png",
"32": "assets/32.png",
"128": "assets/128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": ["assets/OpenDyslexic.otf","assets/cursor.png", "assets/words.json"],
"matches": ["<all_urls>"]
}
]
}