-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·31 lines (28 loc) · 1.22 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
{
"name": "Helper bird : OpenDyslexic font - Free",
"version": "4.0.2",
"manifest_version": 2,
"description": "Helper Bird changes the font and style of the website to help with dyslexia by making it easier to read.",
"browser_action": {
"default_icon": "images/logo/128.png",
"default_popup": "index.html"
},
"icons": {
"128": "images/logo/128.png"
},
"permissions": ["tabs", "*://*/*", "http://*/*", "https://*/*", "<all_urls>", "storage"],
"content_scripts": [{
"matches": ["http://*/*", "https://*/*", "file:///*/*"],
"js": ["assets/dist/js/core-functions.min.js"],
"all_frames": true,
"exclude_globs": ["chrome://*"]
}],
"web_accessible_resources": ["/assets/dist/fonts/OpenDyslexic-Bold.otf",
"/assets/dist/fonts/OpenDyslexic-BoldItalic.otf",
"/assets/dist/fonts/OpenDyslexic-Italic.otf",
"/assets/dist/fonts/OpenDyslexic-Regular.otf",
"/assets/dist/fonts/OpenDyslexicMono-Regular.otf",
"/assets/dist/css/opendyslexic/accesibility.min.css",
"assets/css/bootstrap/*.css", "assets/css/myStyles.css", "assets/css/fonts/*", "assets/js/*.js", "assets/dist/css/bootstrap/*.css", "assets//dist/css/myStyles.css", "assets//dist/css/fonts/*", "assets//dist/js/*.js"
]
}