-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest-dev.json
68 lines (68 loc) · 1.68 KB
/
manifest-dev.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
58
59
60
61
62
63
64
65
66
67
68
{
"manifest_version": 3,
"name": "Augmented Tabflow",
"version": "0.14.0",
"minimum_chrome_version": "116",
"description": "Augment your tab workflow with extended tab, tab group and session managment.",
"permissions": [
"sidePanel",
"tabs",
"tabGroups",
"storage",
"unlimitedStorage",
"bookmarks",
"favicon",
"history",
"search",
"activeTab"
],
"host_permissions": ["*://suggestqueries.google.com/*"],
"icons": {
"16": "assets/icons/icon-3-dev-16.png",
"32": "assets/icons/icon-3-dev-32.png",
"48": "assets/icons/icon-3-dev-48.png",
"128": "assets/icons/icon-3-dev-128.png"
},
"background": {
"service_worker": "serviceWorker.js",
"type": "module"
},
"action": {
"default_title": "Augmented Tabflow",
"default_popup": "sessionManager.html"
},
"side_panel": {
"default_path": "sessionManager.html"
},
"commands": {
"_execute_action": {
"suggested_key": "Alt+A"
},
"toggle-action": {
"suggested_key": "Alt+T",
"description": "Toggle between side panel and popup as default extension action"
},
"close-all-session-windows": {
"description": "Close all session windows"
},
"exit-current-session": {
"description": "Exit current session"
},
"edit-current-tab-url": {
"description": "Edit current tab URL"
},
"open-new-tab": {
"description": "Open new tab"
},
"open-new-window": {
"description": "Open new window"
},
"open-new-tab-group": {
"description": "Open new tab group"
},
"toggle-fullscreen": {
"suggested_key": "Alt+F",
"description": "Toggle full screen"
}
}
}