Task Timer

Task Timer

A simple tool to help keep track of time spent on tasks such as work, studies, or other things.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "3.10.6",
  "default_locale": "en",
  "offline_enabled": true,
  "minimum_chrome_version": "22",
  "permissions": [
    "alarms",
    "storage"
  ],
  "web_accessible_resources": [
    "style/images/icon-64.png"
  ],
  "icons": {
    "16": "style/images/icon-16.png",
    "64": "style/images/icon-64.png",
    "128": "style/images/icon-128.png"
  },
  "app": {
    "launch": {
      "local_path": "main.html"
    }
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  }
}