RobbeR Redmine Time Tracker

RobbeR Redmine Time Tracker

This extension allows you to track time in Redmine

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Ignácz Róbert",
  "name": "RobbeR Redmine Time Tracker",
  "description": "This extension allows you to track time in Redmine",
  "version": "1.3.1",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "rrtt.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "*://*/*"
  ]
}