Hide ChatGPT Sidebar

Automatically hides the sidebar on ChatGPT.

什么是Hide ChatGPT Sidebar?

Hide ChatGPT Sidebar是由Poorly Coded Extensions开发的Chrome扩展程序,该扩展的主要功能是“Automatically hides the sidebar on ChatGPT.”。

扩展截图

screenshot
screenshot

下载Hide ChatGPT Sidebar扩展crx文件

下载Hide ChatGPT Sidebar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Hide ChatGPT Sidebar is a simple, yet powerful Chrome extension designed to help you focus on what matters the most – your conversation with ChatGPT. This extension effortlessly hides the distracting sidebar on the ChatGPT website, providing you with a clean and clutter-free interface.

Main Features:

1. Instantly hide the ChatGPT sidebar: Automatically hides the distracting sidebar, leaving you free to work as soon as the page loads. You can click on the extension icon to toggle the sidebar if you want to see it.

2. Auto-select GPT-4: For ChatGPT Plus users, the extension selects GPT-4 model as soon as the site loads so you can get the best answers.

2. Easy-to-use toggle: The extension features a user-friendly toggle button, allowing you to quickly switch between hiding and displaying the sidebar as per your preference.

3. Lightweight and efficient: Hide ChatGPT Sidebar is designed to consume minimal resources, ensuring that it doesn't slow down your browsing experience.

4. Automatic updates: Stay up-to-date with the latest features and improvements as we continue to enhance the extension.

5. Privacy-focused: We value your privacy, and that's why Hide ChatGPT Sidebar doesn't require any unnecessary permissions. The extension solely interacts with the ChatGPT website to provide a seamless experience.

Enhance your ChatGPT experience with Hide ChatGPT Sidebar and say goodbye to distractions! Install now and enjoy a focused and streamlined AI conversation.                    

扩展基本信息

名称 Hide ChatGPT Sidebar Hide ChatGPT Sidebar
ID jaklicmecioibaalhgiagacghdjeelhk
官方URL https://chromewebstore.google.com/detail/hide-chatgpt-sidebar/jaklicmecioibaalhgiagacghdjeelhk
简介 Automatically hides the sidebar on ChatGPT.
文件大小 24 KB
安装次数 143
当前版本 1.2
更新时间 2023-05-16
上架时间 2023-05-10
评分 5.00/5 共3次评分
开发者 Poorly Coded Extensions
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hide ChatGPT Sidebar",
    "version": "1.2",
    "description": "Automatically hides the sidebar on ChatGPT.",
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}