Conduit Copilot - AI analyst for business

Conduit Copilot - AI analyst for business

Conduit is a Copilot AI for business owners. You can think of it like a data analyst in a box, powered by AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Conduit Copilot - AI analyst for business",
  "description": "Conduit is a Copilot AI for business owners. You can think of it like a data analyst in a box, powered by AI.",
  "version": "1.0.3.1",
  "version_name": "1.0.3.1 (prod)",
  "manifest_version": 3,
  "background": {
    "service_worker": "scripts/serviceWorker.js"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": "media/favicon/apple-touch-icon.png",
    "default_title": "Click to open Copilot"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "https://app.getconduit.app/*"
      ],
      "js": [
        "scripts/contentScript.js"
      ],
      "all_frames": false,
      "match_origin_as_fallback": false,
      "match_about_blank": false,
      "run_at": "document_idle",
      "world": "ISOLATED"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "html/iframe.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "media/favicon/favicon-16x16.png",
    "32": "media/favicon/favicon-32x32.png",
    "48": "media/favicon/48x48.png",
    "128": "media/favicon/128x128.png"
  },
  "host_permissions": [
    "https://*.getconduit.app/"
  ]
}