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
48 lines (44 loc) · 1.43 KB
/
manifest.json
File metadata and controls
48 lines (44 loc) · 1.43 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
{
"manifest_version": 2,
"name": "Web Activity Time Tracker",
"short_name": "Web Time Tracker",
"version": "1.3.2",
"minimum_chrome_version": "26",
"description": "Track and limit time your activity in the browser every day.",
"options_page": "options.html",
"icons": {
"16": "icons/16x16.png",
"32": "icons/32x32.png",
"48": "icons/48x48.png",
"128": "icons/128x128.png"
},
"permissions": [
"tabs",
"activeTab",
"storage",
"idle",
"chrome://favicon/*",
"webNavigation",
"unlimitedStorage"
],
"optional_permissions": [
"https://www.youtube.com/*",
"notifications"
],
"offline_enabled": true,
"background": {
"scripts": ["scripts/common.js",
"scripts/storage.js",
"scripts/activity.js",
"scripts/tab.js",
"scripts/timeInterval.js",
"scripts/background.js",
"scripts/restriction.js"],
"persistent": false
},
"browser_action": {
"default_popup": "index.html",
"default_title": "Web Activity Time Tracker",
"default_icon": "icons/48x48.png"
}
}