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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Night Vision 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Night Vision
ID hamjjddlcjfininpcaoankggglkblckb
공식 URL 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"
        }
    ]
}