-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·43 lines (43 loc) · 1.05 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
39
40
41
42
43
{
"manifest_version": 2,
"name": "Nine Notes",
"description": "Create notes in your sidebar and navigate among them in tab-like fashion.",
"version": "0.10.0",
"author": "Artyom Babiy",
"icons": {
"48": "icon.svg",
"96": "icon.svg"
},
"sidebar_action": {
"default_title": "Nine Notes",
"default_panel": "sidebar/sidebar.html",
"default_icon": "icon.svg"
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icon.svg",
"default_title": "Nine Notes"
},
"commands": {
"_execute_sidebar_action": {
"suggested_key": {
"default": "Shift+Alt+N"
},
"description": "Show Nine Notes"
}
},
"permissions": [
"storage",
"menus",
"tabs",
"clipboardWrite"
]
}