Examine source code of Time tracking tool - Clockly by 500apps

Inspect and view changes in Time tracking tool - Clockly by 500apps 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
{
  "name": "Time tracking tool - Clockly by 500apps",
  "description": "Easily track all your task's productivity with the help of our chrome extension ",
  "version": "1.0.1",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "48": "icons/clockly_48.png",
    "128": "icons/clockly_128.png"
  },
  "browser_action": {
    "default_title": "500apps",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "notifications",
    "cookies",
    "*://infinity.500apps.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://infinity.500apps.com/*"
      ],
      "css": [
        "/cs/style.css"
      ],
      "js": [
        "cs/script.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}