-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
30 lines (28 loc) · 974 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
{
"name": "MagicScroll Web Reader",
"version": "3.1",
"manifest_version": 2,
"description": "Read the web with MagicScroll",
"browser_action": {
"default_icon": "images/icon19.png",
"default_title": "Read with MagicScroll",
"default_popup": "chrome.html"
},
"content_scripts": [{
"matches": ["<all_urls>"],
"css": ["staticscroll.css"]
}],
"permissions" :
[ "<all_urls>", "storage"
],
"web_accessible_resources": ["images/next_1.png", "images/previous_1.png",
"images/play_1.png", "images/minus_1.png",
"images/pause_1.png", "images/plus_1.png",
"images/refresh_1.png", "images/skewed_print.png", "images/bug_1.png", "images/settings.png", "images/load.gif"],
"icons": {
"128": "images/icon128.png",
"16": "images/icon19.png",
"48": "images/icon48.png"
},
"content_security_policy": "script-src 'self' https://hrscs04.appspot.com; object-src 'self'"
}