-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmanifest.json
38 lines (38 loc) · 1.03 KB
/
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
{
"manifest_version": 2,
"name": "Copy as Org-Mode",
"version": "0.2.0",
"applications": {
"gecko": {
"id": "{59e590fc-6635-45fe-89c7-af637eb4b9c0}"
}
},
"description": "Copy selection or links as Org-mode format text.",
"icons": {
"256": "img/icon.png"
},
"browser_action": {
"browser_style": true,
"default_icon": "img/icon.png",
"default_title": "Copy as Org-mode (Ctrl+Alt+O)"
},
"options_ui": {
"page": "dist/options_ui.html",
"browser_style": true,
"open_in_tab": false
},
"background": {
"scripts": ["dist/background.js"]
},
"web_accessible_resources": ["img/*.png"],
"permissions": ["activeTab", "clipboardWrite", "menus", "storage", "notifications"],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Alt+O",
"linux": "Ctrl+Alt+O"
},
"description": "Copy as Org-Mode"
}
}
}