WhatsApp Web Dark Mode

Enables Dark Mode on WhatsApp Web

Qu'est-ce que WhatsApp Web Dark Mode ?

WhatsApp Web Dark Mode est une extension Chrome développée par Saqib Ameen, et sa fonction principale est "Enables Dark Mode on WhatsApp Web".

Captures d'Écran de l'Extension

screenshot
screenshot

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

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

                        While using a laptop, it's super convenient to turn on the WhatsApp Web and communicate without checking your phone again and again. For the light-sensitive people, and at night, in general, it could be annoying to use. With this extension, you can turn on the Dark Mode of WhatsApp and keep using it!

🔥 Built using on top of the dark mode designed by the WhatsApp team. This extension:

- Enables Dark Mode on WhatsApp Web
- Remember your preference
- Automatically set the mode 
- Toggle to switch b/w modes
- Completely Open Source [WIP]

📋 It only requires permission to the WhatsApp Web page to manage the colors. No extra permissions. Code is completely Open Source so you can check yourself. 

👋 Get in touch

Twitter: https://twitter.com/saqibameen
GitHub: https://github.com/saqibameen
Website: https://www.saqib.dev

Made with ❤️ for dark mode lovers.                    

Informations de Base sur l'Extension

Nom WhatsApp Web Dark Mode WhatsApp Web Dark Mode
ID cmjeaohnmonfbicehghplafmggicjmge
URL Officiel https://chrome.google.com/webstore/detail/whatsapp-web-dark-mode/cmjeaohnmonfbicehghplafmggicjmge
Description Enables Dark Mode on WhatsApp Web
Taille du Fichier 20.84 KB
Nombre d'Installations 122
Version Actuelle 1.0.1
Dernière Mise à Jour 2020-06-30
Date de Publication 2020-06-30
Évaluation 5.00/5 Total 7 Évaluations
Développeur Saqib Ameen
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://saqibameen.com
URL de la Page d'Aide https://saqibameen.com
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhatsApp Web Dark Mode",
    "version": "1.0.1",
    "description": "Enables Dark Mode on WhatsApp Web",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/"
            ],
            "js": [
                "syncState.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "manifest_version": 2
}