WhatsDark
A chrome extension to activate dark mode on whatsapp web
Vad är WhatsDark?
WhatsDark är en Chrome-tillägg utvecklad av https://nelsonatuonwu.me, och dess huvudfunktion är "A chrome extension to activate dark mode on whatsapp web".
Tilläggsskärmbilder
Ladda ner WhatsDark-förlängningens CRX-fil
Ladda ner WhatsDark-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | WhatsDark |
ID | nnkdhlgmdomabofndlmknngpaibaekbl |
Officiell webbadress | https://chromewebstore.google.com/detail/whatsdark/nnkdhlgmdomabofndlmknngpaibaekbl |
Beskrivning | A chrome extension to activate dark mode on whatsapp web |
Filstorlek | 347 KB |
Antal Installationer | 25 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2020-04-30 |
Publiceringsdatum | 2020-04-30 |
Utvecklare | https://nelsonatuonwu.me |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://nelsonatuonwu.me |
Hjälpsida URL | https://nelsonatuonwu.me/#/contact |
Stödda Språk | 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" ] } |