Screen Capture by Kami

Screen Capture by Kami

Kami desktop extension for video annotations

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Kami desktop extension for video annotations",
  "version": "1.1.5",
  "name": "Screen Capture by Kami",
  "content_scripts": [
    {
      "matches": [
        "*://web.kamihq.com/web/*.html*",
        "*://staging.kamihq.com/web/*.html*",
        "*://canary.kamihq.com/web/*.html*",
        "*://local.kamipdf.com/web/*.html*"
      ],
      "exclude_matches": [
        "*://*/web/options.html*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "background": {
    "page": "background.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "desktopCapture",
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}