WhatsDark
A chrome extension to activate dark mode on whatsapp web
WhatsDark là gì?
WhatsDark là một tiện ích mở rộng Chrome được phát triển bởi https://nelsonatuonwu.me, và tính năng chính của nó là "A chrome extension to activate dark mode on whatsapp web".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng WhatsDark
Tải xuống các tệp mở rộng WhatsDark dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | WhatsDark |
ID | nnkdhlgmdomabofndlmknngpaibaekbl |
URL Chính Thức | https://chromewebstore.google.com/detail/whatsdark/nnkdhlgmdomabofndlmknngpaibaekbl |
Mô tả | A chrome extension to activate dark mode on whatsapp web |
Kích Thước Tệp | 347 KB |
Số Lần Cài Đặt | 25 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2020-04-30 |
Ngày Phát Hành | 2020-04-30 |
Nhà Phát Triển | https://nelsonatuonwu.me |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://nelsonatuonwu.me |
URL Trang Trợ Giúp | https://nelsonatuonwu.me/#/contact |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |