forked from everii-Group/mocoapp-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.chrome.json
42 lines (42 loc) · 1.03 KB
/
manifest.chrome.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
{
"name": "MOCO Zeiterfassung",
"short_name": "MOCO",
"description": "MOCO Zeiterfassung Plugin",
"manifest_version": 3,
"icons": {
"16": "src/images/moco-32x32.png",
"32": "src/images/moco-32x32.png",
"48": "src/images/moco-159x159.png",
"128": "src/images/moco-159x159.png"
},
"options_ui": {
"page": "options.html"
},
"permissions": ["storage", "tabs"],
"host_permissions": ["https://*.mocoapp.com/*"],
"background": {
"service_worker": "background.[version].js"
},
"action": {
"default_icon": "src/images/moco-32x32.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.[version].js"],
"css": ["content.css"]
}
],
"commands": {
"_execute_action": {
"description": "MOCO-Zeiterfassung ein- und ausblenden",
"suggested_key": {
"default": "Ctrl+Shift+K",
"mac": "Command+Shift+K"
}
}
},
"web_accessible_resources": [
{ "resources": ["popup.html", "src/images/*"], "matches": ["<all_urls>"] }
]
}