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 |
官方網址 | 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:\/\/*\/*" ] } |