Microsoft Clarity Live

Microsoft Clarity Live

Watch how people are engaging with your site - right from your site.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Microsoft Clarity Live",
  "description": "Watch how people are engaging with your site - right from your site.",
  "manifest_version": 3,
  "version": "1.0.3",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injected.js",
        "injected-entry.js",
        "panel.js",
        "widget.js",
        "heatmap.js",
        "vendors-async.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ]
}