-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (46 loc) · 952 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
42
43
44
45
46
{
"manifest_version": 3,
"name": "Swift Tab Switcher",
"short_name": "Swift Tab Switcher",
"description": "Use shortcuts to quickly switch your current tab.",
"author": "Robby Bennett",
"icons": {
"16": "/assets/icon16.png",
"32": "/assets/icon32.png",
"48": "/assets/icon48.png",
"128": "/assets/icon128.png"
},
"version": "3.3",
"minimum_chrome_version": "112.0.5615.50",
"action": {
"default_icon": "/assets/icon128.png",
"default_popup": "/options/options.html#popup"
},
"options_ui": {
"page": "/options/options.html",
"open_in_tab": true
},
"permissions": [
"tabGroups",
"storage"
],
"background": {
"service_worker": "/sw.js"
},
"commands": {
"rightTab": {
"description": "Right",
"suggested_key": {
"default": "Ctrl+Right",
"mac": "Command+Right"
}
},
"leftTab": {
"description": "Left",
"suggested_key": {
"default": "Ctrl+Left",
"mac": "Command+Left"
}
}
}
}