-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
31 lines (31 loc) · 910 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
{
"manifest_version": 2,
"name": "1w3jdownload",
"description": "1w3j's default tool for downloading books",
"version": "1.0",
"browser_action": {
"default_title": "1w3jdownload",
"default_icon": "icons/icon-19.png",
"default_popup": "popup.html"
},
"permissions": ["downloads"],
"content_scripts": [
{
"matches": ["*://www.allitebooks.org/*", "*://www.allitebooks.com/*"],
"run_at": "document_start",
"js": ["js/allitebooks.js"],
"css": ["css/allitebooks.css"]
}
],
"background": {
"scripts": ["js/allitebooksDownload.js"],
"persistent": false
},
"web_accessible_resources": ["images/*.png"],
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png"
}
}