Hide ChatGPT Sidebar

Automatically hides the sidebar on ChatGPT.

O que é Hide ChatGPT Sidebar?

Hide ChatGPT Sidebar é uma extensão do Chrome desenvolvida por Poorly Coded Extensions, e sua principal característica é "Automatically hides the sidebar on ChatGPT.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Hide ChatGPT Sidebar

Baixe arquivos de extensão Hide ChatGPT Sidebar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Hide ChatGPT Sidebar Hide ChatGPT Sidebar
ID jaklicmecioibaalhgiagacghdjeelhk
URL Oficial https://chromewebstore.google.com/detail/hide-chatgpt-sidebar/jaklicmecioibaalhgiagacghdjeelhk
Descrição Automatically hides the sidebar on ChatGPT.
Tamanho do Arquivo 24 KB
Contagem de Instalações 143
Versão Atual 1.2
Última Atualização 2023-05-16
Data de Publicação 2023-05-10
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Poorly Coded Extensions
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}