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