Customize ChatGPT

Customize ChatGPT

Dynamically resize ChatGPT's chat window and swap Enter/Shift+Enter functions for user input.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Customize ChatGPT",
  "version": "1.2",
  "description": "Dynamically resize ChatGPT's chat window and swap Enter/Shift+Enter functions for user input.",
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*"
      ],
      "js": [
        "adjustChatDisplayArea.js",
        "modifyEnterKeyBehavior.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}