Examine source code of MakeChatGPTWider (deprecated)

Inspect and view changes in MakeChatGPTWider (deprecated) source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Increase ChatGPT chatwidth",
  "version": "1.0",
  "description": "Simple addon that will increase the ChatGPT chat width to 100% of the screen. Made with help of chatgpt.",
  "permissions": [
    "https://chat.openai.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/c/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "48": "icon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{7c06127a-d947-4968-ba76-17be9a4e5812}"
    }
  }
}