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
官方網址 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"
    ]
}