ChatGPT Sidebar for Chrome

ChatGPT Sidebar for Chrome

Use ChatGPT in sidebar. You won't need to waste time swiching between ChatGPT and other tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Sidebar for Chrome",
  "description": "Use ChatGPT in sidebar. You won't need to waste time swiching between ChatGPT and other tabs.",
  "version": "1.0.0.0",
  "background": {
    "service_worker": "/background.js"
  },
  "icons": {
    "16": "/assets/images/ChatGPTIcon.png",
    "48": "/assets/images/ChatGPTIcon.png",
    "128": "/assets/images/ChatGPTIcon.png"
  },
  "side_panel": {
    "default_path": "panel.html",
    "openPanelOnActionClick": true
  },
  "offline_enabled": true,
  "permissions": [
    "sidePanel"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "/background.js"
      ]
    }
  ]
}