i-Eye Chrome extension

This extension inverts most of the colors on a page

Co je i-Eye Chrome extension?

i-Eye Chrome extension je rozšíření Chrome vyvinuté jaytheman, a jeho hlavní funkcí je „This extension inverts most of the colors on a page“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření i-Eye Chrome extension

Stáhněte si soubory rozšíření i-Eye Chrome extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název i-Eye Chrome extension i-Eye Chrome extension
ID foljdpddalhhihmdkdibcokjejnnkmll
Oficiální URL https://chrome.google.com/webstore/detail/i-eye-chrome-extension/foljdpddalhhihmdkdibcokjejnnkmll
Popis This extension inverts most of the colors on a page
Velikost souboru 9.15 KB
Počet instalací 227
Aktuální Verze 1.1.0
Poslední Aktualizace 2015-11-16
Datum Vydání 2015-11-15
Hodnocení 3.00/5 Celkem 1 Hodnocení
Vývojář jaytheman
Typ Platby free
Webové stránky Rozšíření https://github.com/CynderR/i-Eye-extension
URL Stránky Nápovědy https://github.com/CynderR/i-Eye-extension
Podporované Jazyky 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"
    ]
}