Time Tracking

Time Tracking

This extension allows a user to track their work incrementally throughout the day

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Time Tracking",
  "description": "This extension allows a user to track their work incrementally throughout the day",
  "version": "1.0.9",
  "background": {
    "scripts": [
      "app/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "index.html",
    "default_title": "Track your projects"
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications"
  ]
}