Whatsapp Web Dark

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

Cos'è Whatsapp Web Dark?

Whatsapp Web Dark è un'estensione di Chrome sviluppata da jahanzaibyz, e la sua funzione principale è "A light weight chrome extension to change whatsapp web to dark mode".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Whatsapp Web Dark

Scarica i file di estensione Whatsapp Web Dark in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Whatsapp Web Dark Whatsapp Web Dark
ID ndjpcpnngnaklennbfglofhdpppagjge
URL Ufficiale https://chrome.google.com/webstore/detail/whatsapp-web-dark/ndjpcpnngnaklennbfglofhdpppagjge
Descrizione A light weight chrome extension to change whatsapp web to dark mode
Dimensione del File 768 KB
Conteggio Installazioni 35
Versione Corrente 1
Ultimo Aggiornamento 2020-07-11
Data di Pubblicazione 2020-07-11
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore jahanzaibyz
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
}