WhatsApp Dark Theme

Change your WhatsApp web app to dark theme.

Was ist WhatsApp Dark Theme?

WhatsApp Dark Theme ist eine Chrome-Erweiterung, die von Homecode entwickelt wurde, und ihr Hauptmerkmal ist "Change your WhatsApp web app to dark theme.".

Erweiterungsscreenshots

screenshot

WhatsApp Dark Theme-Erweiterungs-CRX-Datei herunterladen

Laden Sie WhatsApp Dark Theme-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name WhatsApp Dark Theme WhatsApp Dark Theme
ID kccelbjhigfmkeipogopnnfjjomlcdcg
Offizielle URL https://chrome.google.com/webstore/detail/whatsapp-dark-theme/kccelbjhigfmkeipogopnnfjjomlcdcg
Beschreibung Change your WhatsApp web app to dark theme.
Dateigröße 13.59 KB
Installationsanzahl 14
Aktuelle Version 1.0.1
Letztes Update 2020-06-23
Veröffentlichungsdatum 2020-06-23
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Homecode
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://homecode.com.br
Unterstützte Sprachen 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
}