Time tracking tool - Clockly by 500apps

Time tracking tool - Clockly by 500apps

Easily track all your task's productivity with the help of our chrome extension

Merlin
Additional files are visible only to premium users

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"
}