WhatsApp Dark Theme

Change your WhatsApp web app to dark theme.

Vad är WhatsApp Dark Theme?

WhatsApp Dark Theme är en Chrome-tillägg utvecklad av Homecode, och dess huvudfunktion är "Change your WhatsApp web app to dark theme.".

Tilläggsskärmbilder

screenshot

Ladda ner WhatsApp Dark Theme-förlängningens CRX-fil

Ladda ner WhatsApp Dark Theme-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn WhatsApp Dark Theme WhatsApp Dark Theme
ID kccelbjhigfmkeipogopnnfjjomlcdcg
Officiell webbadress https://chrome.google.com/webstore/detail/whatsapp-dark-theme/kccelbjhigfmkeipogopnnfjjomlcdcg
Beskrivning Change your WhatsApp web app to dark theme.
Filstorlek 13.59 KB
Antal Installationer 14
Aktuell Version 1.0.1
Senast Uppdaterad 2020-06-23
Publiceringsdatum 2020-06-23
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Homecode
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://homecode.com.br
Stödda Språk 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
}