ChatGPT Sidebar Toggle

ChatGPT Sidebar Toggle

Show or Hide Sidebar on ChatGPT page. Just Install this addon then click on the ChatGPT Sidebar Toggle icon on top right toolbar to show/hide the ChatGPT sidebar. Contact / Report bugs : [email protected]

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "ChatGPT Sidebar Toggle",
  "version": "1.1",
  "description": "Enables & Disables Sidebar on Chatgpt page.",
  "icons": {
    "48": "icons/logo-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*"
      ],
      "js": [
        "hide-sidebar.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "*://chat.openai.com/*"
  ],
  "browser_action": {
    "default_icon": {
      "16": "/icons/logo-16.png",
      "32": "/icons/logo-32.png"
    },
    "default_title": "Toggle ChatGPT Siderbar"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{c075e132-b6c4-481d-822e-ec3fcb61e644}"
    }
  }
}