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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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