forked from victal/quickcommands
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (41 loc) · 1012 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
40
41
{
"manifest_version": 2,
"name": "Quick Commands Refreshed",
"version": "1.4.0",
"description": "An add-on that tries to mimic Vivaldi's Quick commands window. Open with Alt-Shift-R",
"icons": {
"48": "icons/icon.svg",
"96": "icons/icon.svg"
},
"browser_specific_settings": {
"gecko": {
"id": "{e6ad355f-be44-4c03-9d49-a39f84ac702a}",
"strict_min_version": "60.0"
}
},
"content_scripts": [],
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": {
"19": "icons/icon.svg",
"38": "icons/icon.svg"
},
"default_title": "Quick Commands"
},
"permissions": ["bookmarks", "storage", "tabs", "history", "search"],
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"commands": {
"quick-commands": {
"suggested_key": {
"default": "Alt+Shift+R",
"mac": "Shift+Command+E"
},
"description": "Open the quick-commands window"
}
}
}