-
Notifications
You must be signed in to change notification settings - Fork 172
/
manifest.chrome.dev.json
72 lines (72 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
69
70
71
72
{
"manifest_version": 3,
"name": "__MSG_appName__",
"short_name": "Clockify",
"description": "__MSG_appDesc__",
"default_locale": "en",
"background": {
"service_worker": "sw.js"
},
"version": "2.11.7",
"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_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"
},
"web_accessible_resources": [
{
"resources": [
"assets/images/*.png",
"assets/images/*.svg",
"assets/images/ui-icons/*.svg"
],
"matches": ["<all_urls>"]
}
],
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnGPvcU+dm/buLXvICzoohIQrifJQyUq2CggI7hK8rfl/lowHVpMWKGep83DoKtoc9b7ITmuFbdfJAvYzewKoGu2wJWM9rUH1mZaUtcqwOLxRvYQpiJzr+EXzUU3foFaqf//KNjsmWkV8hy0Uw6Hd0fB24kWdnlbIWE13YeCHifgH5gHJbNzBw6SEOWg5EAt986El6+xFhjtL40HdJwZ2gRJvSvM1qSr3HAIQBb5P/fJeOkBYSnt8+XkbvlWgxWANiWmBco+Zj4sUBmuRUOapVhajRaiGXU/fA5jCnE3Q6QJAv2W7piDJIYTWpvpPsTfZxmgc0TBGF7uvpeJsJmqFmQIDAQAB",
"permissions": [
"background",
"contextMenus",
"storage",
"tabs",
"activeTab",
"identity",
"idle",
"notifications",
"scripting",
"alarms"
],
"host_permissions": ["*://*/", "*://*.clockify.me/*"],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"externally_connectable": {
"ids": ["*"],
"accepts_tls_channel_id": false
}
}