-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
35 lines (35 loc) · 870 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
{
"manifest_version": 2,
"name": "EpubGrabber",
"description": "Capture any page and save to ePub",
"version": "0.0.1",
"browser_action": {
"default_icon": "icons/32.png",
"default_title": "EpubGrabber",
"default_popup": "html/popup.html"
},
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"64": "icons/64.png",
"128": "icons/128.png"
},
"background": {
"persistent": true,
"scripts": [
"js/chrome-promise.js",
"js/common.js",
"js/encodings.js",
"js/bg.js"
]
},
"permissions": [
"<all_urls>",
"activeTab",
"downloads",
"storage",
"pageCapture",
"unlimitedStorage"
],
"content_security_policy": "script-src 'self'; object-src 'self'"
}