Clockk

Clockk

Gather productivity data for your Clockk automated timesheets with Clockk's official web browser extension. You must have an active Clockk.com account in order to use this extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Clockk",
  "author": "Clockk.com Inc.",
  "homepage_url": "https://clockk.com/",
  "short_name": "Clockk",
  "description": "Gather productivity data for your Clockk automated timesheets with Clockk's official web browser extension.",
  "version": "2.3.10",
  "manifest_version": 2,
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_title": "Clockk",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "injections/page-reporter.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://app.clockk.com/*"
      ],
      "js": [
        "injections/app.clockk.com.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "injections/mail.google.com.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "identity",
    "identity.email",
    "notifications",
    "https://*/*",
    "http://*/*"
  ],
  "optional_permissions": [
    "*://*/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{ecdd3370-a417-4e5a-8f8e-4f8700340756}"
    }
  }
}