Clocker

Clocker

Clocker is a Google Chrome extension productivity and developer tool that allows the user to track the time spent doing something.…

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_name__",
  "description": "__MSG_description__",
  "version": "1.0.0.0",
  "permissions": [
    "storage",
    "notifications",
    "alarms",
    "background"
  ],
  "browser_action": {
    "default_icon": {
      "19": "icons/icon19.png",
      "38": "icons/icon38.png"
    },
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "scripts/time.js",
      "scripts/promised.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "web_accessible_resources": [],
  "default_locale": "en"
}