forked from developer-diganta/Dino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
33 lines (33 loc) · 862 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
31
32
33
{
"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"
},
"background.service_worker": {
"scripts": ["background.js"]
},
"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"],
"host_permissions": ["http://*/*", "https://*/*"]
}