* Rename logo and add 32x32 version * Set timer icon if a timer is running * Do not query activities on initialization * Show timer in bubble if timed activity exists * Pass timed activity to App * Code cleanup * Show timer view and stop timer * Make hours optional * Use booked seconds instead of hours * Add type submit to form button * Define colors as sass variables⎄ * Style timer view * Show start timer submit label * Update view layouts and content * Update version and changelog * Dyanically set iframe height * Reduce h1 font size * Add svg webpack loader * Parse empty string (TimeInputParser) * Forward ref in Popup component * Start time on current day only, format buttons * Improve styling * Set standard height as iframe default height, validate form * Upgrade packages to supress react warning * Show activity form in popup after timer was stoped * Use stop-watch icon in timer view * Fix empty description * Close TimerView if timer stopped for current service * Style timerview * Improve timer view styling * qw/setting-time-tracking-hh-mm (#24) * Format duration depending on settingTimeTrackingHHMM * Fix formatDuation without second argument * Fix time format after updating bubble * Add tests for formatDuration
41 lines
1000 B
JSON
41 lines
1000 B
JSON
{
|
|
"name": "MOCO Zeiterfassung",
|
|
"short_name": "MOCO",
|
|
"description": "MOCO Zeiterfassung Plugin",
|
|
"version": "0.9.20",
|
|
"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"
|
|
},
|
|
"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"]
|
|
}
|