i-Eye Chrome extension

This extension inverts most of the colors on a page

Co to jest i-Eye Chrome extension?

i-Eye Chrome extension to rozszerzenie Chrome opracowane przez jaytheman, a jego główną funkcją jest „This extension inverts most of the colors on a page”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia i-Eye Chrome extension

Pobierz pliki rozszerzeń i-Eye Chrome extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa i-Eye Chrome extension i-Eye Chrome extension
ID foljdpddalhhihmdkdibcokjejnnkmll
Oficjalny URL https://chrome.google.com/webstore/detail/i-eye-chrome-extension/foljdpddalhhihmdkdibcokjejnnkmll
Opis This extension inverts most of the colors on a page
Rozmiar pliku 9.15 KB
Liczba instalacji 227
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2015-11-16
Data Publikacji 2015-11-15
Ocena 3.00/5 Łącznie 1 Oceny
Deweloper jaytheman
Typ Płatności free
Strona Rozszerzenia https://github.com/CynderR/i-Eye-extension
Adres URL Strony Pomocy https://github.com/CynderR/i-Eye-extension
Obsługiwane Języki 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"
    ]
}