WhatsDark

A chrome extension to activate dark mode on whatsapp web

Was ist WhatsDark?

WhatsDark ist eine Chrome-Erweiterung, die von https://nelsonatuonwu.me entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension to activate dark mode on whatsapp web".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

WhatsDark-Erweiterungs-CRX-Datei herunterladen

Laden Sie WhatsDark-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Do you, like every other sane person on the planet, have vampire tendencies, hate staring at horrible white bright screens when consuming content? or even worse, when communicating?

WhatsApp was thoughtful enough to release dark mode updates for their apps on the Android & iOS platforms but for some reason there isn't any for web (yet). This is where Whatsapp Web Dark Mode comes in. Following the already defined dark mode color scheme on the android version, it brings the darkness to your webscreens so you don't have to wait for Whatsapp to.

--KNOWN ISSUES--
- The emojis on whatsapp are images and not unicode characters (e.g 😅), I'd bet for emoji style consistency across platforms. These images have white backgrounds and that's on Whatsapp.
- A couple of other images have white backgrounds across the entire application too, in the event you come across this images, they are not of my doing.

--RELEASES--
- v0.1 - Initial Release                    

Grundlegende Informationen zur Erweiterung

Name WhatsDark WhatsDark
ID nnkdhlgmdomabofndlmknngpaibaekbl
Offizielle URL https://chromewebstore.google.com/detail/whatsdark/nnkdhlgmdomabofndlmknngpaibaekbl
Beschreibung A chrome extension to activate dark mode on whatsapp web
Dateigröße 347 KB
Installationsanzahl 25
Aktuelle Version 0.1
Letztes Update 2020-04-30
Veröffentlichungsdatum 2020-04-30
Entwickler https://nelsonatuonwu.me
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://nelsonatuonwu.me
Hilfeseite URL https://nelsonatuonwu.me/#/contact
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhatsDark",
    "version": "0.1",
    "description": "A chrome extension to activate dark mode on whatsapp web",
    "manifest_version": 2,
    "icons": {
        "128": "icons\/128.png",
        "64": "icons\/64.png",
        "32": "icons\/32.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/"
            ],
            "css": [
                "web.css"
            ],
            "js": [
                "web.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "app.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "bg.png"
    ]
}