i-Eye Chrome extension

This extension inverts most of the colors on a page

O que é i-Eye Chrome extension?

i-Eye Chrome extension é uma extensão do Chrome desenvolvida por jaytheman, e sua principal característica é "This extension inverts most of the colors on a page".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão i-Eye Chrome extension

Baixe arquivos de extensão i-Eye Chrome extension 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

                        Inverts sites or pages to help prevent eye strain. Once a site is inverted it remembers to invert the site on the next visit.
Does not invert images, attempts to exclude videos, turns most white text into green text and makes you look like a awesome developer =D

If your text editor is black, your terminal is black and you code with the lights off, this extension is for you.                    

Informações Básicas da Extensão

Nome i-Eye Chrome extension i-Eye Chrome extension
ID foljdpddalhhihmdkdibcokjejnnkmll
URL Oficial https://chrome.google.com/webstore/detail/i-eye-chrome-extension/foljdpddalhhihmdkdibcokjejnnkmll
Descrição This extension inverts most of the colors on a page
Tamanho do Arquivo 9.15 KB
Contagem de Instalações 227
Versão Atual 1.1.0
Última Atualização 2015-11-16
Data de Publicação 2015-11-15
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor jaytheman
Tipo de Pagamento free
Site da Extensão https://github.com/CynderR/i-Eye-extension
URL da Página de Ajuda https://github.com/CynderR/i-Eye-extension
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "i-Eye Chrome extension",
    "description": "This extension inverts most of the colors on a page",
    "version": "1.1.0",
    "browser_action": {
        "default_icon": "ieye.png",
        "default_popup": "interface.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "i-eye-localStorage.js",
                "i-eye.js"
            ],
            "matchAboutBlank": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "i-eye-localStorage.js",
                "i-eye-startDark.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs"
    ]
}