-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
53 lines (53 loc) · 1.39 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
44
45
46
47
48
49
50
51
52
53
{
"manifest_version": 2,
"name": "Shortcut Manager",
"version": "1.0.0",
"description": "Configure custom keys for firefox shortcuts to perform various browser actions.",
"browser_specific_settings": {
"gecko": {
"id": "shortcut-manager@bonurtek.com",
"strict_min_version": "64.0"
}
},
"homepage_url": "https://github.com/bilalonur/shortcut-manager-extension",
"author": "Bilal Onur Eskili",
"icons": {
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"permissions": [
"storage",
"tabs",
"sessions"
],
"background": {
"scripts": ["background.js"]
},
"options_ui": {
"page": "options.html",
"browser_style": true,
"open_in_tab": true
},
"commands": {
"duplicate-tab": {
"suggested_key": { "default": "Alt+Shift+D" },
"description": "Duplicate the current tab"
},
"open-new-tab": {
"suggested_key": { "default": "Ctrl+T" },
"description": "Open a new tab"
},
"open-recent-closed-tab": {
"suggested_key": { "default": "Alt+Shift+T" },
"description": "Open the most recently closed tab"
},
"mute-tab": {
"suggested_key": { "default": "Alt+Shift+M" },
"description": "Mute or unmute the current tab"
}
},
"browser_action": {
"default_title": "Shortcut Manager",
"default_popup": "popup.html"
}
}