-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
36 lines (36 loc) · 997 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
34
35
36
{
"manifest_version": 2,
"name": "Speed Reading Mode",
"version": "0.5",
"description": "Improve reading speed by removing distraction and the need to move our eyes",
"icons": {
"48": "icons/speed-reading-black-512.png"
},
"permissions": [
"storage"
],
"browser_action": {
"browser_style": true,
"default_popup": "popup/index.html",
"default_icon": {
"512": "icons/speed-reading-black-512.png"
},
"theme_icons": [
{
"light": "icons/speed-reading-white-512.png",
"dark": "icons/speed-reading-black-512.png",
"size": 512
}
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": ["style.css"],
"js": ["readability.js", "parser.js", "speed-read.js"]
}
],
"web_accessible_resources": [
"fonts/slabo 27px/Slabo27px-Regular.ttf"
]
}