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
37 lines (33 loc) · 1.01 KB
/
manifest.json
File metadata and controls
37 lines (33 loc) · 1.01 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
{
"manifest_version": 2,
"name": "WebActivity Time Tracker",
"short_name": "WebActivity",
"version": "0.0.1",
"minimum_chrome_version": "26",
"description": "A plain text description",
"icons": {
"16": "icons/16x16.png",
"32": "icons/32x32.png",
"48": "icons/48x48.png",
"128": "icons/128x128.png"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"idle"
],
"background": {
"scripts": ["scripts/common.js",
"scripts/storage.js",
"scripts/activity.js",
"scripts/tab.js",
"scripts/background.js"],
"persistent": false
},
"browser_action": {
"default_popup": "index.html",
"default_title": "WebActivity Time Tracker",
"default_icon": "icons/48x48.png"
}
}