forked from Softwire/Workflowy2Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (35 loc) · 944 Bytes
/
manifest.json
File metadata and controls
37 lines (35 loc) · 944 Bytes
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
{
"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/*",
"declarativeContent"
],
"background":{
"persistent":false,
"page":"background.html"
},
"page_action": {
"default_icon": {
"19": "icons/19.png",
"38": "icons/38.png"
},
"default_title": "Workflowy2Web"
},
"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/*"
]
}