-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
39 lines (39 loc) · 981 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
{
"manifest_version": 2,
"name": "snippet-box",
"description": "Save snippets from sidebar to your selfhosted snippet-box instance",
"version": "0.5",
"browser_specific_settings": {
"gecko": {
"id": "{b5ba7858-f8af-4065-9472-e3370b43efa7}",
"strict_min_version": "80.0"
}
},
"sidebar_action": {
"default_icon": "icons/code-braces-box.png",
"default_title": "snippet-box",
"default_panel": "sidebar/panel.html"
},
"browser_action": {
"default_icon": "icons/code-braces-box.png"
},
"background": {
"scripts": [
"internal/background.js"
]
},
"options_ui": {
"page": "internal/options.html"
},
"permissions": [
"storage",
"<all_urls>"
],
"commands": {
"_execute_sidebar_action": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
}
}
}
}