Whatsapp Web Dark

A light weight chrome extension to change whatsapp web to dark mode

Qu'est-ce que Whatsapp Web Dark ?

Whatsapp Web Dark est une extension Chrome développée par jahanzaibyz, et sa fonction principale est "A light weight chrome extension to change whatsapp web to dark mode".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Whatsapp Web Dark

Téléchargez les fichiers d'extension Whatsapp Web Dark 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

                        Extension to use WhatsApp Web in dark mode.
With this simple extension you can activate or deactivate the dark mode when using Whatsapp Web.                    

Informations de Base sur l'Extension

Nom Whatsapp Web Dark Whatsapp Web Dark
ID ndjpcpnngnaklennbfglofhdpppagjge
URL Officiel https://chrome.google.com/webstore/detail/whatsapp-web-dark/ndjpcpnngnaklennbfglofhdpppagjge
Description A light weight chrome extension to change whatsapp web to dark mode
Taille du Fichier 768 KB
Nombre d'Installations 35
Version Actuelle 1
Dernière Mise à Jour 2020-07-11
Date de Publication 2020-07-11
Évaluation 5.00/5 Total 2 Évaluations
Développeur jahanzaibyz
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Whatsapp Web Dark",
    "version": "1",
    "description": "A light weight chrome extension to change whatsapp web to dark mode",
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "jquery\/jquery.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "jquery\/jquery.min.js",
                "content-script.js"
            ]
        }
    ],
    "manifest_version": 2
}