forked from tarnas14/vimflowy
-
Notifications
You must be signed in to change notification settings - Fork 9
/
manifest.json
44 lines (44 loc) · 984 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
36
37
38
39
40
41
42
43
44
{
"name": "Vimflowy",
"short_name": "Vimflowy",
"description": "Vim shortcuts for Workflowy",
"version": "0.0.5.2",
"manifest_version": 2,
"icons": { "48": "icon48.png", "128": "icon128.png" },
"content_scripts":
[
{
"matches": ["https://workflowy.com/*", "https://*.workflowy.com/*"],
"run_at": "document_start",
"js":
[
"contentscript_start.js"
]
},
{
"matches": ["https://workflowy.com/*", "https://*.workflowy.com/*"],
"run_at": "document_idle",
"js":
[
"contentscript_idle.js"
]
}
],
"web_accessible_resources": [
"state.js",
"TimeTagCounter.js",
"easyMotion.js",
"cursorMovement.js",
"vimflowyFunctionLibrary.js",
"keybindings.js",
"transparentKeybindings.js",
"vimflowy.js",
"options.js"
],
"permissions": [
"https://workflowy.com/*",
"https://*.workflowy.com/*",
"storage"
],
"options_page": "options.html"
}