WhatsApp Web Dark Mode
Enables Dark Mode on WhatsApp Web
WhatsApp Web Dark Modeとは何ですか?
WhatsApp Web Dark ModeはSaqib Ameenによって開発されたChromeの拡張機能で、その主な機能は「Enables Dark Mode on WhatsApp Web」です。
拡張機能のスクリーンショット
WhatsApp Web Dark Mode拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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 } |