-
Notifications
You must be signed in to change notification settings - Fork 55
/
manifest.json
54 lines (54 loc) · 1.42 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"manifest_version": 3,
"name": "Sprint Reader - Speed Reading Extension",
"description": "Speed reading made easy, train yourself to read 1800+ words per minute. Rapid serial visual presentation (RSVP) at its best!",
"version": "3.0.2",
"icons": {
"16": "src/graphics/icon16.png",
"48": "src/graphics/icon48.png",
"128": "src/graphics/icon128.png"
},
"action": {
"default_popup": "src/popup.html",
"default_icon": {
"16": "src/graphics/icon16.png",
"48": "src/graphics/icon48.png",
"128": "src/graphics/icon128.png"
}
},
"minimum_chrome_version": "109",
"background": {
"service_worker": "src/background-worker.js"
},
"web_accessible_resources": [{
"resources": ["*.png"],
"matches": ["<all_urls>"]
}],
"options_page": "src/welcome.html",
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"css": ["src/css/stylepage.css"],
"js": ["lib/jquery/jquery.min.js", "src/content.js"]
}],
"commands": {
"sprint_read_shortcut": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"windows": "Ctrl+Shift+E",
"mac": "MacCtrl+Shift+E",
"linux": "Ctrl+Shift+E"
},
"description": "Sprint read selected text"
}
},
"permissions": [
"contextMenus",
"activeTab",
"clipboardRead",
"storage",
"system.display"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}