i-Eye Chrome extension

This extension inverts most of the colors on a page

Wat is i-Eye Chrome extension?

i-Eye Chrome extension is een Chrome-extensie ontwikkeld door jaytheman, en de belangrijkste functie is "This extension inverts most of the colors on a page".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie i-Eye Chrome extension

Download i-Eye Chrome extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam i-Eye Chrome extension i-Eye Chrome extension
ID foljdpddalhhihmdkdibcokjejnnkmll
Officiële URL https://chrome.google.com/webstore/detail/i-eye-chrome-extension/foljdpddalhhihmdkdibcokjejnnkmll
Beschrijving This extension inverts most of the colors on a page
Bestandsgrootte 9.15 KB
Aantal Installaties 227
Huidige Versie 1.1.0
Laatst Bijgewerkt 2015-11-16
Publicatiedatum 2015-11-15
Beoordeling 3.00/5 Totaal 1 Beoordelingen
Ontwikkelaar jaytheman
Betalingswijze free
Extensiewebsite https://github.com/CynderR/i-Eye-extension
Help Pagina-URL https://github.com/CynderR/i-Eye-extension
Ondersteunde Talen 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"
    ]
}