i-Eye Chrome extension

This extension inverts most of the colors on a page

Что такое i-Eye Chrome extension?

i-Eye Chrome extension - это расширение Chrome, разработанное jaytheman, и его основная функция - "This extension inverts most of the colors on a page".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения i-Eye Chrome extension

Скачайте файлы расширений i-Eye Chrome extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название i-Eye Chrome extension i-Eye Chrome extension
ID foljdpddalhhihmdkdibcokjejnnkmll
Официальный URL https://chrome.google.com/webstore/detail/i-eye-chrome-extension/foljdpddalhhihmdkdibcokjejnnkmll
Описание This extension inverts most of the colors on a page
Размер файла 9.15 KB
Количество установок 227
Текущая Версия 1.1.0
Последнее Обновление 2015-11-16
Дата публикации 2015-11-15
Рейтинг 3.00/5 Всего 1 оценок
Разработчик jaytheman
Тип оплаты free
Официальный сайт расширения https://github.com/CynderR/i-Eye-extension
URL страницы помощи https://github.com/CynderR/i-Eye-extension
Поддерживаемые языки 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"
    ]
}