TimeTrack

TimeTrack

Tracks how much time you spend on websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TimeTrack",
  "version": "0.0.3",
  "description": "Tracks how much time you spend on websites",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "dexie.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "*://*/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "options.html",
  "icons": {
    "32": "images/clock_32.png",
    "64": "images/clock_64.png",
    "128": "images/clock_128.png"
  }
}