-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 745 Bytes
/
manifest.json
File metadata and controls
30 lines (30 loc) · 745 Bytes
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
{
"manifest_version": 3,
"name": "Chrome Activity Reader",
"description": "Track tab-level activity across Chrome windows and review what you worked on recently.",
"version": "0.1.1",
"icons": {
"16": "assets/icons/icon-v2-16.png",
"32": "assets/icons/icon-v2-32.png",
"48": "assets/icons/icon-v2-48.png",
"128": "assets/icons/icon-v2-128.png"
},
"permissions": [
"tabs",
"storage",
"idle",
"alarms",
"sidePanel"
],
"background": {
"service_worker": "background/service-worker.js",
"type": "module"
},
"side_panel": {
"default_path": "ui/panel.html"
},
"action": {
"default_title": "Open Chrome Activity Reader Side Panel"
},
"options_page": "ui/settings.html"
}