WhatsApp Dark Theme

Change your WhatsApp web app to dark theme.

Cos'è WhatsApp Dark Theme?

WhatsApp Dark Theme è un'estensione di Chrome sviluppata da Homecode, e la sua funzione principale è "Change your WhatsApp web app to dark theme.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione WhatsApp Dark Theme

Scarica i file di estensione WhatsApp Dark Theme in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome WhatsApp Dark Theme WhatsApp Dark Theme
ID kccelbjhigfmkeipogopnnfjjomlcdcg
URL Ufficiale https://chrome.google.com/webstore/detail/whatsapp-dark-theme/kccelbjhigfmkeipogopnnfjjomlcdcg
Descrizione Change your WhatsApp web app to dark theme.
Dimensione del File 13.59 KB
Conteggio Installazioni 14
Versione Corrente 1.0.1
Ultimo Aggiornamento 2020-06-23
Data di Pubblicazione 2020-06-23
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Homecode
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://homecode.com.br
Lingue Supportate 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
}