WhatsApp Dark Theme

Change your WhatsApp web app to dark theme.

Qu'est-ce que WhatsApp Dark Theme ?

WhatsApp Dark Theme est une extension Chrome développée par Homecode, et sa fonction principale est "Change your WhatsApp web app to dark theme.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension WhatsApp Dark Theme

Téléchargez les fichiers d'extension WhatsApp Dark Theme au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom WhatsApp Dark Theme WhatsApp Dark Theme
ID kccelbjhigfmkeipogopnnfjjomlcdcg
URL Officiel https://chrome.google.com/webstore/detail/whatsapp-dark-theme/kccelbjhigfmkeipogopnnfjjomlcdcg
Description Change your WhatsApp web app to dark theme.
Taille du Fichier 13.59 KB
Nombre d'Installations 14
Version Actuelle 1.0.1
Dernière Mise à Jour 2020-06-23
Date de Publication 2020-06-23
Évaluation 5.00/5 Total 4 Évaluations
Développeur Homecode
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://homecode.com.br
Langues Prises en Charge 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
}