WhatsApp Web Dark Mode
A simple extention to turn on dark mode of WhatsApp Web
What is WhatsApp Web Dark Mode?
WhatsApp Web Dark Mode is a Chrome extension developed by Sashen Pasindu, and its main feature is "A simple extention to turn on dark mode of WhatsApp Web".
Extension Screenshots
Download WhatsApp Web Dark Mode Extension CRX File
Download WhatsApp Web Dark Mode 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
A simple chrome extension to turn on the dark theme of WhatsApp Web
Extension Basic Information
Name | |
ID | pbmjjliggohmnkgdfpggpiicnccnlhmm |
Official URL | https://chrome.google.com/webstore/detail/whatsapp-web-dark-mode/pbmjjliggohmnkgdfpggpiicnccnlhmm |
Description | A simple extention to turn on dark mode of WhatsApp Web |
File Size | 43.16 KB |
Installation Count | 354 |
Current Version | 0.1 |
Last Updated | 2020-05-20 |
Publish Date | 2020-05-20 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Sashen Pasindu |
[email protected] | |
Payment Type | free |
Extension Website | https://sashen.me |
Help Page URL | https://twitter.com/sashenme |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WhatsApp Web Dark Mode", "version": "0.1", "manifest_version": 2, "description": "A simple extention to turn on dark mode of WhatsApp Web", "author": "Sashen Pasindu", "homepage_url": "https:\/\/sashen.me", "background": { "scripts": [ "modernizr.min.js", "js\/jquery-3.4.1.min.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "css": [ "styles.css" ], "js": [ "content.js", "js\/jquery-3.4.1.min.js" ], "run_at": "document_end" } ], "icons": { "16": "images\/icon_16.png", "128": "images\/icon_128.png" } } |