Custom Dark Mode
Customize your dark mode for the web!
Custom Dark Mode란 무엇입니까?
Custom Dark Mode은(는) loora에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize your dark mode for the web!"입니다.
확장 프로그램 스크린샷
Custom Dark Mode 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Custom Dark Mode is a browser add-on that help you design your own dark style for the web. Simply open toolbar popup UI and then adjust the color settings. There are a variety of options available to choose from. From document body's "background-color" to "font-color", "header-color" and etc. Moreover, you can adjust the opacity for all HTML elements. All the settings in toolbar popup are auto saved to the memory. There is also a (+/-) button with you can use to whitelist desired domain(s) from dark mode. Please note that, at the current version of the add-on, there is no option to see the whitelist table. You can only add or remove websites from toolbar popup UI. In order to turn the add-on ON/OFF, you can use the big "torch" button at the top center in popup. If you found a bug to report, or have a feature request, please fill the bug report form in the add-on's homepage (https://mybrowseraddon.com/custom-dark-mode.html).
확장 프로그램 기본 정보
이름 | Custom Dark Mode |
ID | bocmmeghmdkmbdlcagdfpnedcbekjpcn |
공식 URL | https://chromewebstore.google.com/detail/custom-dark-mode/bocmmeghmdkmbdlcagdfpnedcbekjpcn |
설명 | Customize your dark mode for the web! |
파일 크기 | 85.97 KB |
설치 횟수 | 1,674 |
현재 버전 | 0.1.4 |
최근 업데이트 | 2023-07-04 |
출시 날짜 | 2018-12-04 |
평점 | 3.64/5 총 11 개의 평점 |
개발자 | loora |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://mybrowseraddon.com/custom-dark-mode.html |
도움말 페이지 URL | https://mybrowseraddon.com/custom-dark-mode.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.4", "manifest_version": 3, "offline_enabled": true, "name": "Custom Dark Mode", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*\/*" ], "description": "Customize your dark mode for the web!", "homepage_url": "https:\/\/mybrowseraddon.com\/custom-dark-mode.html", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Custom Dark Mode", "default_popup": "data\/popup\/popup.html", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "data\/content_script\/inject.js" ] } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |