Time Tracker

Time Tracker

Extention that allows to track time spent for certain projects. No need to keep in mind how much time was already spent. After installation find "Time Tracker" button on your browser navigation panel. Click on it for opening extention in new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Time Tracker",
  "version": "0.2resigned1",
  "author": "Anna Molodtsova",
  "description": "Allows to track time spent for certain project.",
  "icons": {
    "96": "icons/app_icon.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "button/extButton.png",
    "default_title": "Time Tracker"
  },
  "background": {
    "scripts": [
      "extButtonAction.js"
    ]
  },
  "permissions": [
    "unlimitedStorage"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "58.0"
    }
  }
}