-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
37 lines (29 loc) · 928 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": "Ultimate Org Capture",
"description": "Taking notes in org-mode while searching the web has never been easier.",
"version": "1.0",
"homepage_url": "https://github.com/cestdiego/org-capture-chrome",
"permissions": ["activeTab"],
"background": {
"persistent": true,
"scripts": ["main.js"]
},
"commands": {
"link": {
"suggested_key": { "default": "Ctrl+Shift+L" },
"description": "Capture the link, if there was a selection, send that too"
},
"capture": {
"suggested_key": { "default": "Ctrl+Shift+C" },
"description": "Capture the selected text"
}
},
"icons": {
"128" : "org-mode-unicorn-logo-large.png"
},
"browser_action": {
"default_icon": "org-mode-unicorn-logo-large.png",
"default_popup": "popup.html"
}
}