night light
Inverted display mode for less eye strain in dark or dim lighting
night light란 무엇입니까?
night light은(는) Tyler Milford에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inverted display mode for less eye strain in dark or dim lighting"입니다.
확장 프로그램 스크린샷
night light 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Inverted display mode for better viewing with less eye strain in dark or dim lighting. The result is light text on a dark background instead of dark text on a light background, resulting in significantly less light output and less eye strain. Images are dimmed instead of inverted so they should still render nicely on most pages. Easily toggled on or off from the toolbar or main menu. Any sites that don't look good in night mode can easily be added to the whitelist.
확장 프로그램 기본 정보
이름 | |
ID | aionebabdognkieabomemdegmjedkked |
공식 URL | https://chrome.google.com/webstore/detail/night-light/aionebabdognkieabomemdegmjedkked |
설명 | Inverted display mode for less eye strain in dark or dim lighting |
파일 크기 | 56.63 KB |
설치 횟수 | 2,300 |
현재 버전 | 1.14 |
최근 업데이트 | 2018-12-04 |
출시 날짜 | 2018-12-04 |
평점 | 3.67/5 총 9 개의 평점 |
개발자 | Tyler Milford |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/conceptualspace/nightlight |
도움말 페이지 URL | https://github.com/conceptualspace/nightlight |
개인정보 보호 정책 페이지 URL | https://conceptualspace.net/privacy.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "night light", "description": "Inverted display mode for less eye strain in dark or dim lighting", "version": "1.14", "author": "[email protected]", "applications": { "gecko": { "id": "{d8a39bf7-9f46-45b7-9d77-7754cd13c0f8}" } }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "underscore-min.js", "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_title": "Toggle night mode" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script_start.js" ], "all_frames": true, "run_at": "document_start" }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script_idle.js" ], "all_frames": true, "run_at": "document_idle" } ], "permissions": [ "storage", "contextMenus", "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |