Amoled Dark Mode for ChatGPT

A Chrome extension to toggle dark mode for ChatGPT.

O que é Amoled Dark Mode for ChatGPT?

Amoled Dark Mode for ChatGPT é uma extensão do Chrome desenvolvida por Darin Menezes, e sua principal característica é "A Chrome extension to toggle dark mode for ChatGPT.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Amoled Dark Mode for ChatGPT

Baixe arquivos de extensão Amoled Dark Mode for ChatGPT 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

                        The "Amoled Dark Mode for ChatGPT" Chrome extension offers several fantastic benefits to users! 😎🌙

Eye Comfort: 🌟

Reduce eye strain with a sleek, amoled-friendly dark theme.
Enjoy a more comfortable reading experience during extended usage.

Battery Savings: 🔋

Conserve battery life on devices with amoled screens.
Extend your browsing time without worrying about recharging.

Seamless Integration: 🔄

Effortlessly switch between amoled dark and default dark modes with a simple toggle switch.
No manual refreshes needed; the smart observer ensures continuous dark mode browsing.

By installing this extension, you not only enhance the aesthetics of your ChatGPT interface but also enjoy tangible benefits such as reduced eye strain, improved battery usage, and a more visually appealing chat experience! 🚀💬                    

Informações Básicas da Extensão

Nome Amoled Dark Mode for ChatGPT Amoled Dark Mode for ChatGPT
ID aglfigeheodccgeodjbimolajpjfaoge
URL Oficial https://chromewebstore.google.com/detail/amoled-dark-mode-for-chat/aglfigeheodccgeodjbimolajpjfaoge
Descrição A Chrome extension to toggle dark mode for ChatGPT.
Tamanho do Arquivo 7.85 KB
Contagem de Instalações 74
Versão Atual 1.2
Última Atualização 2024-02-16
Data de Publicação 2023-11-13
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor Darin Menezes
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": "Amoled Dark Mode for ChatGPT",
    "version": "1.2",
    "description": "A Chrome extension to toggle dark mode for ChatGPT.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    }
}