{
  "manifest_version": 3,
  "name": "Zo StreamBrowse",
  "version": "0.1.0-stream.1",
  "description": "Streaming co-browsing extension powered by Zo — AI backend that sees your page and takes actions through it with real-time streaming responses.",
  "permissions": ["debugger", "contextMenus", "sidePanel", "storage", "activeTab", "tabs", "scripting", "audioCapture", "tts"],
  "host_permissions": ["https://api.zo.computer/*", "https://*.zo.space/*", "https://*.zocomputer.io/*", "http://*/*", "https://*/*"],
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["content.js"],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "action": {
    "default_title": "Zo StreamBrowse",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}
