{
  "manifest_version": 3,
  "name": "Private Chat Widget",
  "version": "1.0.0",
  "description": "Use the chat app as a floating widget on any page or from the browser toolbar.",
  "permissions": ["storage", "tabs", "sidePanel"],
  "host_permissions": ["http://*/*", "https://*/*"],
  "action": {
    "default_title": "Private Chat Widget",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "content_scripts": [
    {
      "matches": ["http://*/*", "https://*/*"],
      "js": ["content.js"],
      "run_at": "document_idle"
    }
  ]
}
