Image Dimmer
Dim images on the page while using a dark reader or dark mode
Image Dimmer란 무엇입니까?
Image Dimmer은(는) 09 Labs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Dim images on the page while using a dark reader or dark mode"입니다.
확장 프로그램 스크린샷
Image Dimmer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Image Dimmer reduces the brightness of images when you are browsing the internet in dark mode making reading much more comfortable. Simply hover over a dimmed image to view brighten it.
확장 프로그램 기본 정보
이름 | |
ID | hmjfhbkkkepekaoeofmapchghbmonbbf |
공식 URL | https://chrome.google.com/webstore/detail/image-dimmer/hmjfhbkkkepekaoeofmapchghbmonbbf |
설명 | Dim images on the page while using a dark reader or dark mode |
파일 크기 | 21.27 KB |
설치 횟수 | 89 |
현재 버전 | 0.1.0 |
최근 업데이트 | 2020-07-04 |
출시 날짜 | 2020-07-04 |
평점 | 3.60/5 총 5 개의 평점 |
개발자 | 09 Labs |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Image Dimmer", "version": "0.1.0", "description": "Dim images on the page while using a dark reader or dark mode", "content_scripts": [ { "js": [ "js\/mute.js" ], "matches": [ "https:\/\/*\/*" ] } ], "browser_action": { "default_icon": "images\/image-mute-128.png", "default_title": "Image Dimmer", "default_popup": "index.html" }, "icons": { "16": "images\/image-mute-16.png", "48": "images\/image-mute-48.png", "128": "images\/image-mute-128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "commands": { "toggle-image-dimmer": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A", "windows": "Ctrl+Shift+A", "chromeos": "Ctrl+Shift+A", "linux": "Ctrl+Shift+A" }, "description": "Toggle Image Dimmer" }, "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+H", "mac": "Command+Shift+H", "chromeos": "Ctrl+Shift+H", "linux": "Ctrl+Shift+H" } } }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |