i-Eye Chrome extension

This extension inverts most of the colors on a page

What is i-Eye Chrome extension?

i-Eye Chrome extension is a Chrome extension developed by jaytheman, and its main feature is "This extension inverts most of the colors on a page".

Extension Screenshots

screenshot
screenshot

Download i-Eye Chrome extension Extension CRX File

Download i-Eye Chrome extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name i-Eye Chrome extension i-Eye Chrome extension
ID foljdpddalhhihmdkdibcokjejnnkmll
Official URL https://chrome.google.com/webstore/detail/i-eye-chrome-extension/foljdpddalhhihmdkdibcokjejnnkmll
Description This extension inverts most of the colors on a page
File Size 9.15 KB
Installation Count 227
Current Version 1.1.0
Last Updated 2015-11-16
Publish Date 2015-11-15
Rating 3.00/5 Total 1 Ratings
Developer jaytheman
Payment Type free
Extension Website https://github.com/CynderR/i-Eye-extension
Help Page URL https://github.com/CynderR/i-Eye-extension
Supported Languages 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"
    ]
}