Wide GPT

Wide GPT

Expand ChatGPT's screen instantly with 'Wide GPT' Chrome extension! No clicks needed, free and easy to install. Get more space now!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wide GPT",
  "version": "1.0.3",
  "description": "Expand ChatGPT's screen instantly with 'Wide GPT' Chrome extension! No clicks needed, free and easy to install. Get more space now!",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-32.png"
  },
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png",
    "512": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ],
      "js": [
        "src/pages/content/index.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-16.png",
        "icon-32.png",
        "icon-48.png",
        "icon-128.png",
        "icon-512.png"
      ],
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ]
    }
  ]
}