Night Vision
Make websites easier to view by inverting colors. Open source and customizable.
什麼是Night Vision?
Night Vision是由nishanths開發的Chrome擴展程式,該擴展的主要功能是“Make websites easier to view by inverting colors. Open source and customizable.”。
擴展截圖
下載Night Vision擴展crx文件
下載Night Vision擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Overview An extension that makes webpages easier to read at night. Open source and customizable. It inverts the colors of the primarily white-themed webpages you visit, making them more suitable for viewing in low light conditions. Usage Click on the icon to enable or disable night vision. Right click on the icon to see Options. Features – Customize the level of inversion. – Schedule Night Vision to run automatically at the specified time. – Does not invert images (no more scary photograph negatives). – A partial mode that allows you to turn off night mode manually for specific tabs even during the automatic time slots. GitHub https://github.com/RobZuazua/Night-Vision Made by @RobZuazua and @nishanths. License The MIT License – https://github.com/RobZuazua/Night-Vision/blob/master/LICENSE
擴展基本資訊
名稱 | Night Vision |
ID | hamjjddlcjfininpcaoankggglkblckb |
官方網址 | https://chromewebstore.google.com/detail/night-vision/hamjjddlcjfininpcaoankggglkblckb |
簡介 | Make websites easier to view by inverting colors. Open source and customizable. |
檔案大小 | 320 KB |
安裝次數 | 2,713 |
目前版本 | 0.2.1 |
更新時間 | 2015-03-23 |
上架時間 | 2015-03-23 |
評分 | 3.51/5 共 82 次評分 |
開發者 | nishanths |
付費類型 | free |
擴展官網 | https://github.com/RobZuazua/Night-Vision |
說明頁面URL | https://github.com/RobZuazua/Night-Vision/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Night Vision", "short_name": "nightvision", "description": "Make websites easier to view by inverting colors. Open source and customizable.", "version": "0.2.1", "manifest_version": 2, "browser_action": { "default_title": "Click to switch modes", "default_icon": "icons\/night256.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "128": "icons\/night128.png", "64": "icons\/night64.png", "48": "icons\/night48.png", "16": "icons\/night16.png" }, "options_page": "options\/index.html", "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "match_about_blank": true, "css": [ "dummy.css" ], "run_at": "document_start" } ] } |