WhatsApp Dark Theme

Change your WhatsApp web app to dark theme.

Hvad er WhatsApp Dark Theme?

WhatsApp Dark Theme er en Chrome-udvidelse udviklet af Homecode, og dens hovedfunktion er "Change your WhatsApp web app to dark theme.".

Udvidelsesskærmbilleder

screenshot

Download WhatsApp Dark Theme-udvidelses-CRX-fil

Download WhatsApp Dark Theme-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn WhatsApp Dark Theme WhatsApp Dark Theme
ID kccelbjhigfmkeipogopnnfjjomlcdcg
Officiel URL https://chrome.google.com/webstore/detail/whatsapp-dark-theme/kccelbjhigfmkeipogopnnfjjomlcdcg
Beskrivelse Change your WhatsApp web app to dark theme.
Filstørrelse 13.59 KB
Antal Installationer 14
Nuværende Version 1.0.1
Senest Opdateret 2020-06-23
Udgivelsesdato 2020-06-23
Bedømmelse 5.00/5 Samlet 4 Bedømmelser
Udvikler Homecode
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://homecode.com.br
Understøttede Sprog 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
}