Redmine Timer

Redmine Timer

The Redmine time tracking button for Firefox and Chrome. Icons made by Freepik from www.flaticon.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Redmine Timer",
  "version": "1.0.5",
  "description": "The Redmine time tracking button for Firefox and Chrome. Icons made by Freepik from www.flaticon.com.",
  "author": "Jeff Robertson",
  "homepage_url": "https://bitbucket.org/jprc8/redmine-timer-for-browsers/overview",
  "icons": {
    "16": "icons/timer16.png",
    "48": "icons/timer48.png",
    "96": "icons/timer96.png",
    "128": "icons/timer128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/timer16.png",
      "48": "icons/timer48.png"
    },
    "default_title": "Click to start recording"
  },
  "options_ui": {
    "page": "options.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+R"
      }
    }
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage",
    "notifications",
    "alarms"
  ],
  "optional_permissions": [
    "*://*/*"
  ]
}