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 |
官方網址 | 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 } |