Examine source code of Chronos

Inspect and view changes in Chronos source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chronos",
  "description": "Chronos is a task timer and timesheet logging application",
  "version": "0.1",
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "icons": {
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    "icons/*.png"
  ],
  "browser_action": {
    "default_icon": "icons/palettes/palette-1/color-0.png"
  }
}