commit cbf79b960c6d898eaca6ba6bc06171fc45d65ee7 Author: Tobias Miesel Date: Thu Jul 5 11:35:50 2018 +0200 added manifest diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..9539978 --- /dev/null +++ b/manifest.json @@ -0,0 +1,47 @@ +{ + "name": "MOCO Zeiterfassung", + "short_name": "MOCO", + "description": "MOCO Zeiterfassung Plugin", + "version": "0.9.20", + "manifest_version": 2, + "description" : "MOCO Time Tracking Plugin", + "icons": { "16": "src/images/logo.png", + "48": "src/images/logo.png", + "128": "src/images/logo.png" }, + "options_ui": { + "page": "options.html", + "chrome_style": true + }, + "permissions": [ + "https://*.mocoapp.com/*", + "background", + "storage", + "tabs" + ], + "optional_permissions": [ + "*://*/" + ], + "background": { + "scripts": [ + "node_modules/jquery/dist/jquery.min.js", + "node_modules/select2/select2.js", + "background.min.js" + ] + }, + "browser_action": { + "default_icon": "src/images/logo.png", + "default_title": "MOCO Time Tracking", + "default_popup": "popup.html" + }, + "web_accessible_resources": [ + "src/images/*" + ], + "commands": { + "_execute_browser_action": { + "suggested_key": { + "default": "Ctrl+M", + "mac": "Command+M" + } + } + } +} diff --git a/src/images/logo.png b/src/images/logo.png new file mode 100644 index 0000000..dae9a0e Binary files /dev/null and b/src/images/logo.png differ