-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathmanifest.json
37 lines (33 loc) · 904 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
{
"manifest_version": 2,
"name": "Org Capture",
"version": "0.2.1",
"description": "A helper for capturing things via org-protocol in emacs: First, set up: http://orgmode.org/worg/org-contrib/org-protocol.html",
"homepage_url": "https://github.com/sprig/org-capture-extension",
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"permissions": ["activeTab", "storage"],
"options_ui": {
"page": "options.html"
},
"browser_action": {
},
"commands": {
"_execute_browser_action": {
"description": "Capture current page with org-capture",
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
}
},
"capture-with-note": {
"description": "Prompt for note and capture",
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
}
}
}
}