Amoled Dark Mode for ChatGPT
A Chrome extension to toggle dark mode for ChatGPT.
Amoled Dark Mode for ChatGPT란 무엇입니까?
Amoled Dark Mode for ChatGPT은(는) Darin Menezes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension to toggle dark mode for ChatGPT."입니다.
확장 프로그램 스크린샷
Amoled Dark Mode for ChatGPT 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The "Amoled Dark Mode for ChatGPT" Chrome extension offers several fantastic benefits to users! 😎🌙 Eye Comfort: 🌟 Reduce eye strain with a sleek, amoled-friendly dark theme. Enjoy a more comfortable reading experience during extended usage. Battery Savings: 🔋 Conserve battery life on devices with amoled screens. Extend your browsing time without worrying about recharging. Seamless Integration: 🔄 Effortlessly switch between amoled dark and default dark modes with a simple toggle switch. No manual refreshes needed; the smart observer ensures continuous dark mode browsing. By installing this extension, you not only enhance the aesthetics of your ChatGPT interface but also enjoy tangible benefits such as reduced eye strain, improved battery usage, and a more visually appealing chat experience! 🚀💬
확장 프로그램 기본 정보
이름 | Amoled Dark Mode for ChatGPT |
ID | aglfigeheodccgeodjbimolajpjfaoge |
공식 URL | https://chromewebstore.google.com/detail/amoled-dark-mode-for-chat/aglfigeheodccgeodjbimolajpjfaoge |
설명 | A Chrome extension to toggle dark mode for ChatGPT. |
파일 크기 | 7.85 KB |
설치 횟수 | 74 |
현재 버전 | 1.2 |
최근 업데이트 | 2024-02-16 |
출시 날짜 | 2023-11-13 |
평점 | 3.00/5 총 2 개의 평점 |
개발자 | Darin Menezes |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Amoled Dark Mode for ChatGPT", "version": "1.2", "description": "A Chrome extension to toggle dark mode for ChatGPT.", "permissions": [ "activeTab", "storage" ], "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ] } ], "icons": { "48": "icon.png" } } |