Candu for Chrome: Launch Product Experiences

Candu for Chrome: Launch Product Experiences

Install the Candu Chrome Extension to preview and publish experiences like homepages & empty states, into your product.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Candu",
  "name": "Candu for Chrome: Launch Product Experiences",
  "description": "Install the Candu Chrome Extension to preview and publish experiences like homepages & empty states, into your product.",
  "icons": {
    "16": "images/[email protected]",
    "48": "images/[email protected]",
    "128": "images/[email protected]"
  },
  "version": "4.1.8",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Candu for Chrome - Launch product-led experiences, fast"
  },
  "permissions": [
    "cookies",
    "*://*.candu.ai/*",
    "storage",
    "activeTab",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-sM7sB7rk4yoWs5Ddh8niiC0vgaWdMWuYh4xcG+T6iCg=' https://cdn.candu.ai https://cdn.lr-ingest.io https://cdn.segment.com https://cdn.heapanalytics.com https://widget.intercom.io https://js.intercomcdn.com; object-src https://cdn.candu.ai 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "extension.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "previewClient.js",
    "snapshotClient.js"
  ]
}