Time Tracking Extension

Track time to redmine from anywhere on the web and improve productivity.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Time Tracking Extension",
  "short_name": "CodeX Time Tracker",
  "description": "Track time to redmine from any task tracker and improve your productivity.",
  "background": {
    "scripts": [
      "vendors.background.main.bundle.js",
      "background.bundle.js"
    ]
  },
  "version": "1.11.4",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Time Tracking"
  },
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "assets/images/logo-16.png",
    "48": "assets/images/logo-48.png",
    "128": "assets/images/logo-128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "https://redmine.codex-soft.net/*",
    "https://*.atlassian.net/*",
    "https://github.com/*",
    "https://*.gitlab.com/*",
    "https://app.asana.com/*",
    "https://*.myjetbrains.com/*",
    "https://calendar.google.com/*",
    "https://gitlab.codex-soft.net/*",
    "https://jiradev.netfonds.de/*",
    "https://*.kanbanize.com/*",
    "notifications"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_specific_settings": {
    "gecko": {
      "id": "{e3ae99fe-c871-4168-a58c-e82e784177f1}"
    }
  }
}