i-Eye Chrome extension

This extension inverts most of the colors on a page

什么是i-Eye Chrome extension?

i-Eye Chrome extension是由jaytheman开发的Chrome扩展程序,该扩展的主要功能是“This extension inverts most of the colors on a page”。

扩展截图

screenshot
screenshot

下载i-Eye Chrome extension扩展crx文件

下载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"
    ]
}