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 } |