-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest-chrome.json
62 lines (62 loc) · 1.88 KB
/
manifest-chrome.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"manifest_version": 2,
"name": "Dyxitool",
"short_name": "Dyxitool",
"version": "1.3.0",
"author": "SamClercky",
"description": "The extension to help people with dyslexia. All features are tested on real people with dyslexia.",
"icons": {
"16": "img/icons/icon16.png",
"32": "img/icons/icon32.png",
"48": "img/icons/icon48.png",
"128": "img/icons/icon128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"lib/browser-polyfill.min.js",
"js/common/chromepatch.js",
"js/common/logging.js",
"js/common/onload.js",
"js/common/Color.js",
"js/common/CommunicationInterface.js",
"js/common/iStorage.js",
"js/content_scripts/settingsState.js",
"js/content_scripts/insertCssFont.js",
"js/content_scripts/cscreen.js",
"js/content_scripts/main.js"
],
"css": [
"css/styles-chrome.css"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"fonts/OpenDyslexic-Regular.otf",
"fonts/OpenDyslexic-Italic.otf",
"fonts/OpenDyslexic-Bold.otf",
"fonts/OpenDyslexic-BoldItalic.otf",
"fonts/OpenDyslexicMono-Regular.otf"
],
"browser_action": {
"default_icon": "img/icons/icon16.png",
"default_popup": "html/option_page-chrome.html",
"default_title": "Dyxitool",
"browser_style": true
},
"options_page": "html/option_page-chrome.html",
"default_locale": "en",
"background": {
"scripts": [
"lib/browser-polyfill.min.js",
"js/background/main.js"
]
}
}