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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 } |