forked from clockify/browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.chrome.dev.json
68 lines (68 loc) · 1.83 KB
/
manifest.chrome.dev.json
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
{
"manifest_version" : 2,
"name": "Clockify Time Tracker",
"short_name": "Clockify",
"description": "Track time from anywhere on the web and improve productivity.",
"background": {
"scripts": [
"main.bundle.js",
"vendors.main.bundle.js",
"contentScripts/helper-background.js",
"contentScripts/background.js",
"contentScripts/webSocket-background.js",
"contentScripts/timeEntry-httpRequests-background.js",
"contentScripts/token-background.js",
"contentScripts/idle-detection-background.js",
"contentScripts/notification-background.js",
"contentScripts/reminder-background.js",
"contentScripts/pomodoro-background.js",
"contentScripts/project-httpRequests-background.js"
]
},
"version": "1.8.53",
"browser_action": {
"default_popup": "index.html",
"default_title": "Clockify"
},
"content_scripts": [
{
"js": ["contentScripts/contentScript.js"],
"matches":[
"https://clockify.me/*"
]
}
],
"options_page": "settings.html",
"commands": {
"quick-start-stop-entry": {
"suggested_key": {
"default": "Ctrl+Shift+U"
},
"description": "Quick start/stop current entry"
}
},
"icons": {
"16":"assets/images/logo-16.png",
"48":"assets/images/logo-48.png",
"128":"assets/images/logo-128.png"
},
"oauth2": {
"client_id": "your-google-client-id",
"scopes": ["openid", "email", "profile", "https://www.googleapis.com/auth/userinfo.email"]
},
"permissions": [
"background",
"contextMenus",
"*://*.clockify.me/*",
"storage",
"tabs",
"*://*/",
"webNavigation",
"activeTab",
"identity",
"idle",
"notifications"
],
"optional_permissions": ["*://*/"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}