ChatGPT Full Width

ChatGPT Full Width

Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles.

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 Full Width",
  "description": "Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles.",
  "version": "1.2",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "author": "[email protected]",
  "content_scripts": [
    {
      "matches": [
        "https://chatgpt.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}