forked from Softwire/Workflowy2Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
32 lines (30 loc) · 838 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
{
"manifest_version": 2,
"name": "Workflowy Prototype Converter",
"description": "This extension converts a workflowy page to an HTML prototype.",
"version": "1.0",
"permissions": [
"tabs",
"https://workflowy.com/s/*"
],
"background":{
"persistent":false,
"page":"background.html"
},
"browser_action": {
"default_icon": "icons/browserAction.png"
},
"icons": {
"48": "icons/48.png",
"128": "icons/128.png"
},
"content_scripts": [
{
"matches": [ "https://workflowy.com/*" ],
"js": [ "lib/jquery-2.1.4.min.js", "lib/jszip.min.js", "lib/jszip-utils.min.js", "lib/FileSaver.min.js", "lib/async.min.js", "src/htmlGenerator.js", "src/converter.js", "src/outline.js", "src/utilities.js" ]
}
],
"web_accessible_resources": [
"resources/*"
]
}