forked from everii-Group/mocoapp-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.firefox.json
40 lines (40 loc) · 1004 Bytes
/
manifest.firefox.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
{
"name": "MOCO Zeiterfassung",
"short_name": "MOCO",
"description": "MOCO Zeiterfassung Plugin",
"manifest_version": 2,
"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",
"browser_style": true
},
"permissions": ["https://*.mocoapp.com/*", "storage", "tabs"],
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "src/images/moco-32x32.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.[version].js"],
"css": ["content.css"]
}
],
"commands": {
"_execute_browser_action": {
"description": "MOCO-Zeiterfassung ein- und ausblenden",
"suggested_key": {
"default": "Ctrl+Shift+K",
"mac": "Command+Shift+K"
}
}
},
"web_accessible_resources": ["src/images/*", "popup.html"]
}