Kaptr.me - Web Dashboards with Live Snapshots

Kaptr.me - Web Dashboards with Live Snapshots

Capture live snapshots of any app or website - centralize them on a single dashboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Kaptr.me - Web Dashboards with Live Snapshots",
  "version": "3.2.1",
  "description": "Capture live snapshots of any app or website - centralize them on a single dashboard.",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "extension.html",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "scripting",
    "activeTab",
    "tabs",
    "storage",
    "cookies"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "js/injectCode.js"
      ],
      "all_frames": false
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "https://localhost:8080/*",
      "http://localhost:8080/*",
      "https://kaptr.me/*"
    ]
  }
}