i-Eye Chrome extension

This extension inverts most of the colors on a page

Cos'è i-Eye Chrome extension?

i-Eye Chrome extension è un'estensione di Chrome sviluppata da jaytheman, e la sua funzione principale è "This extension inverts most of the colors on a page".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione i-Eye Chrome extension

Scarica i file di estensione i-Eye Chrome extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome i-Eye Chrome extension i-Eye Chrome extension
ID foljdpddalhhihmdkdibcokjejnnkmll
URL Ufficiale https://chrome.google.com/webstore/detail/i-eye-chrome-extension/foljdpddalhhihmdkdibcokjejnnkmll
Descrizione This extension inverts most of the colors on a page
Dimensione del File 9.15 KB
Conteggio Installazioni 227
Versione Corrente 1.1.0
Ultimo Aggiornamento 2015-11-16
Data di Pubblicazione 2015-11-15
Valutazione 3.00/5 Totale 1 Valutazioni
Sviluppatore jaytheman
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/CynderR/i-Eye-extension
URL della Pagina di Aiuto https://github.com/CynderR/i-Eye-extension
Lingue Supportate 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"
    ]
}