forked from Stigmatoz/web-activity-time-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 669 Bytes
/
manifest.json
File metadata and controls
32 lines (32 loc) · 669 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
31
32
{
"manifest_version": 3,
"name": "__MSG_extName__",
"short_name": "Web Tracker",
"version": "2.0.10",
"description": "__MSG_extDescription__",
"options_page": "src/dashboard.html",
"default_locale": "en",
"icons": {
"16": "16x16.png",
"32": "32x32.png",
"48": "48x48.png",
"128": "128x128.png"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"idle",
"unlimitedStorage",
"alarms",
"notifications"
],
"offline_enabled": true,
"background": {
"service_worker": "src/background.ts"
},
"action": {
"default_popup": "src/popup.html",
"default_title": "Web Activity Time Tracker"
}
}