-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
71 lines (71 loc) · 1.89 KB
/
Copy pathmanifest.json
File metadata and controls
71 lines (71 loc) · 1.89 KB
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
69
70
71
{
"manifest_version": 3,
"name": "__MSG_appName__",
"version": "1.3.0",
"description": "__MSG_appDescription__",
"default_locale": "zh_CN",
"permissions": [
"tabs",
"storage",
"favicon",
"alarms",
"sessions",
"contextMenus",
"tabGroups",
"activeTab",
"sidePanel"
],
"optional_permissions": ["history", "bookmarks"],
"host_permissions": [],
"optional_host_permissions": ["<all_urls>", "https://wttr.in/*", "https://api.open-meteo.com/*"],
"chrome_url_overrides": {
"newtab": "src/pages/newtab/index.html"
},
"action": {
"default_popup": "src/pages/popup/index.html",
"default_icon": {
"16": "public/icons/icon-16.png",
"48": "public/icons/icon-48.png",
"128": "public/icons/icon-128.png"
}
},
"background": {
"service_worker": "src/sw/index.ts",
"type": "module"
},
"icons": {
"16": "public/icons/icon-16.png",
"48": "public/icons/icon-48.png",
"128": "public/icons/icon-128.png"
},
"commands": {
"open-workspace": {
"suggested_key": { "default": "Alt+C" },
"description": "Open __MSG_appName__ new tab page"
},
"save-all-tabs": {
"suggested_key": { "default": "Alt+Shift+S" },
"description": "Archive all tabs in current window"
},
"toggle-search": {
"suggested_key": { "default": "Alt+K" },
"description": "Open search in __MSG_appName__"
},
"open-history": {
"suggested_key": { "default": "Alt+H" },
"description": "Open history timeline in __MSG_appName__"
},
"toggle-arc-sidebar": {
"suggested_key": { "default": "Alt+A" },
"description": "Toggle Arc-style sidebar"
},
"open-command-bar": {
"suggested_key": { "default": "Alt+Shift+Space" },
"description": "Open Arc command bar"
}
},
"side_panel": {
"default_path": "src/pages/sidebar/index.html"
},
"incognito": "split"
}