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ファイルをダウンロード
night light拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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:\/\/*\/*" ] } |