WhatsApp Dark Theme

Change your WhatsApp web app to dark theme.

O que é WhatsApp Dark Theme?

WhatsApp Dark Theme é uma extensão do Chrome desenvolvida por Homecode, e sua principal característica é "Change your WhatsApp web app to dark theme.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão WhatsApp Dark Theme

Baixe arquivos de extensão WhatsApp Dark Theme 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

                        This is a simple Google Chrome Extension to change the WhatsApp web app to the dark theme

If you don't know, WhatsApp has already a css class to change the theme to dark but, it's disabled by default.  

This code just add the class "dark" to body tag of DOM on WhatsApp web page.

You can check out the extension here: https://bit.ly/WhatsAppDarkThemeCode                    

Informações Básicas da Extensão

Nome WhatsApp Dark Theme WhatsApp Dark Theme
ID kccelbjhigfmkeipogopnnfjjomlcdcg
URL Oficial https://chrome.google.com/webstore/detail/whatsapp-dark-theme/kccelbjhigfmkeipogopnnfjjomlcdcg
Descrição Change your WhatsApp web app to dark theme.
Tamanho do Arquivo 13.59 KB
Contagem de Instalações 14
Versão Atual 1.0.1
Última Atualização 2020-06-23
Data de Publicação 2020-06-23
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Homecode
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://homecode.com.br
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhatsApp Dark Theme",
    "version": "1.0.1",
    "description": "Change your WhatsApp web app to dark theme.",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "128": "icons\/icon-128.png",
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png"
    },
    "browser_action": {
        "default_icon": {
            "128": "icons\/icon-128.png",
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png"
        }
    },
    "manifest_version": 2
}