Night Vision

Make websites easier to view by inverting colors. Open source and customizable.

O que é Night Vision?

Night Vision é uma extensão do Chrome desenvolvida por nishanths, e sua principal característica é "Make websites easier to view by inverting colors. Open source and customizable.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Night Vision

Baixe arquivos de extensão Night Vision no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Night Vision Night Vision
ID hamjjddlcjfininpcaoankggglkblckb
URL Oficial https://chromewebstore.google.com/detail/night-vision/hamjjddlcjfininpcaoankggglkblckb
Descrição Make websites easier to view by inverting colors. Open source and customizable.
Tamanho do Arquivo 320 KB
Contagem de Instalações 2,713
Versão Atual 0.2.1
Última Atualização 2015-03-23
Data de Publicação 2015-03-23
Classificação 3.51/5 Total de 82 Avaliações
Desenvolvedor nishanths
Tipo de Pagamento free
Site da Extensão https://github.com/RobZuazua/Night-Vision
URL da Página de Ajuda https://github.com/RobZuazua/Night-Vision/issues
Idiomas Suportados 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"
        }
    ]
}