-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 802 Bytes
/
manifest.json
File metadata and controls
30 lines (30 loc) · 802 Bytes
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": "Dino",
"version": "1.0",
"description": "A chrome extension to help people with dyslexia and color blindness access web pages with more ease.",
"icons": {
"16": "assets/images/dino_16px.png",
"48": "assets/images/dino_48px.png",
"128": "assets/images/dino_128px.png"
},
"action": {
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"matches": ["<all_urls>"],
"resources": ["assets/*"]
}
],
"content_scripts": [
{
"matches": ["*://*/*"],
"all_frames": true,
"js": ["webpage-assets/js/content.js", "mark.js"],
"css": ["webpage-assets/css/styles.css"]
}
],
"permissions": ["tabs", "activeTab", "storage"],
"host_permissions": ["http://*/*", "https://*/*"]
}