WhatsApp Web Dark Mode
Enables Dark Mode on WhatsApp Web
WhatsApp Web Dark Mode क्या है?
WhatsApp Web Dark Mode Saqib Ameen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enables Dark Mode on WhatsApp Web"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में WhatsApp Web Dark Mode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } |