-
Notifications
You must be signed in to change notification settings - Fork 172
/
manifest.firefox.dev.json
99 lines (99 loc) · 2.55 KB
/
manifest.firefox.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"manifest_version": 2,
"name": "__MSG_appName__",
"short_name": "Clockify",
"description": "__MSG_appDesc__",
"default_locale": "en",
"background": {
"scripts": [
"moment.js",
"contentScripts/URLPatternHelper.js",
"contentScripts/service-localstorage.js",
"contentScripts/defaultProject.js",
"contentScripts/service-background.js",
"api-services/workspace-service.js",
"api-services/token-service.js",
"api-services/user-service.js",
"api-services/client-service.js",
"api-services/project-task-service.js",
"api-services/tag-service.js",
"api-services/time-entry-service.js",
"api-services/auth-service.js",
"api-services/analytics-service.js",
"api-services/selectors-service.js",
"contentScripts/integration-background.js",
"contentScripts/custom-field-service-background.js",
"contentScripts/clockifyLocales.js",
"contentScripts/background.js",
"contentScripts/webSocket-background.js",
"contentScripts/idle-detection-background.js",
"contentScripts/context-menu.background.js",
"contentScripts/notification-background.js",
"contentScripts/stop-timer-at-background.js",
"contentScripts/reminder-background.js",
"contentScripts/pomodoro-background.js",
"api-services/notification-service.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "{1262fc44-5ec9-4088-a7a7-4cd42f3f548d}",
"strict_min_version": "58.0"
}
},
"version": "2.11.7",
"browser_action": {
"default_popup": "index.html",
"default_title": "Clockify"
},
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"js": [
"contentScripts/service-localstorage.js",
"contentScripts/clockifyLocales.js",
"vendors.bundle.js",
"main.bundle.js"
],
"css": ["styles/main-integration.css"]
}
],
"options_ui": {
"page": "settings.html",
"open_in_tab": true
},
"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"
},
"web_accessible_resources": [
"assets/images/*.png",
"assets/images/*.svg",
"assets/images/ui-icons/*.svg"
],
"permissions": [
"contextMenus",
"*://*.clockify.me/*",
"*://*/",
"storage",
"tabs",
"activeTab",
"identity",
"idle",
"notifications",
"*://developer.mozilla.org/*",
"webRequest",
"alarms"
],
"optional_permissions": ["*://*/"],
"content_security_policy": "script-src 'self'; object-src 'self'"
}