WhatsApp Web Dark Mode
Enables Dark Mode on WhatsApp Web
Что такое WhatsApp Web Dark Mode?
WhatsApp Web Dark Mode - это расширение Chrome, разработанное Saqib Ameen, и его основная функция - "Enables Dark Mode on WhatsApp Web".
Снимки экрана расширения
Скачать файл CRX расширения WhatsApp Web Dark Mode
Скачайте файлы расширений WhatsApp Web Dark Mode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
While using a laptop, it's super convenient to turn on the WhatsApp Web and communicate without checking your phone again and again. For the light-sensitive people, and at night, in general, it could be annoying to use. With this extension, you can turn on the Dark Mode of WhatsApp and keep using it! 🔥 Built using on top of the dark mode designed by the WhatsApp team. This extension: - Enables Dark Mode on WhatsApp Web - Remember your preference - Automatically set the mode - Toggle to switch b/w modes - Completely Open Source [WIP] 📋 It only requires permission to the WhatsApp Web page to manage the colors. No extra permissions. Code is completely Open Source so you can check yourself. 👋 Get in touch Twitter: https://twitter.com/saqibameen GitHub: https://github.com/saqibameen Website: https://www.saqib.dev Made with ❤️ for dark mode lovers.
Основная информация о расширении
Название | |
ID | cmjeaohnmonfbicehghplafmggicjmge |
Официальный URL | https://chrome.google.com/webstore/detail/whatsapp-web-dark-mode/cmjeaohnmonfbicehghplafmggicjmge |
Описание | Enables Dark Mode on WhatsApp Web |
Размер файла | 20.84 KB |
Количество установок | 122 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2020-06-30 |
Дата публикации | 2020-06-30 |
Рейтинг | 5.00/5 Всего 7 оценок |
Разработчик | Saqib Ameen |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://saqibameen.com |
URL страницы помощи | https://saqibameen.com |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WhatsApp Web Dark Mode", "version": "1.0.1", "description": "Enables Dark Mode on WhatsApp Web", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/" ], "js": [ "syncState.js" ] } ], "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "manifest_version": 2 } |