-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
57 lines (51 loc) · 1.27 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
54
55
56
57
{
"description": "Duplicates the current tab",
"homepage_url": "https://github.com/Skeletonxf/duplicate-tab/",
"manifest_version": 3,
"name": "Duplicate Tab",
"version": "3.0",
"permissions": ["contextMenus", "storage", "activeTab"],
"background": {
"page": "/background-page.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{54fa1e34-a0ad-4526-a81b-b06139adf332}",
"strict_min_version": "115.0"
}
},
"action": {
"default_icon": "icons/fork.svg",
"default_title": "Duplicate Tab",
"theme_icons": [
{
"dark": "icons/fork.svg",
"light": "icons/fork-dark.svg",
"size": 32
}
]
},
"options_ui": {
"page": "/settings/settings.html"
},
"commands": {
"duplicate-shortcut-1": {
"suggested_key": {
"default": "Alt+Shift+D"
},
"description": "Duplicate current tab shortcut 1"
},
"duplicate-shortcut-2": {
"description": "Duplicate current tab shortcut 2"
},
"duplicate-shortcut-3": {
"description": "Duplicate current tab shortcut 3"
},
"advanced-duplicate-shortcut-1": {
"suggested_key": {
"default": "Alt+Shift+A"
},
"description": "Advanced Duplication shortcut"
}
}
}