ChatGPT Full-Width Display Extension

ChatGPT Full-Width Display Extension

Change contents to go full width by default

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 Display Extension",
  "version": "1.2",
  "author": "Luciana Hanan",
  "homepage_url": "https://github.com/lucianahanan",
  "description": "Change contents to go full width by default",
  "icons": {
    "64": "logo-64.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*",
        "*://bard.google.com/*"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "action": {
    "default_icon": "icon.png"
  }
}