Whatsapp Web Dark
A light weight chrome extension to change whatsapp web to dark mode
What is Whatsapp Web Dark?
Whatsapp Web Dark is a Chrome extension developed by jahanzaibyz, and its main feature is "A light weight chrome extension to change whatsapp web to dark mode".
Extension Screenshots
Download Whatsapp Web Dark Extension CRX File
Download Whatsapp Web Dark extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension to use WhatsApp Web in dark mode. With this simple extension you can activate or deactivate the dark mode when using Whatsapp Web.
Extension Basic Information
Name | |
ID | ndjpcpnngnaklennbfglofhdpppagjge |
Official URL | https://chrome.google.com/webstore/detail/whatsapp-web-dark/ndjpcpnngnaklennbfglofhdpppagjge |
Description | A light weight chrome extension to change whatsapp web to dark mode |
File Size | 768 KB |
Installation Count | 35 |
Current Version | 1 |
Last Updated | 2020-07-11 |
Publish Date | 2020-07-11 |
Rating | 5.00/5 Total 2 Ratings |
Developer | jahanzaibyz |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |