Eye Protector

May it be the best eye-protect extension on earth.

Eye Protector란 무엇입니까?

Eye Protector은(는) 久远寺千歳에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "May it be the best eye-protect extension on earth."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Eye Protector 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        If my extension makes your life better, please consider buying me a cup of cola :)
https://www.paypal.com/donate/?business=RU6H2VWCNUPLY&no_recurring=0&item_name=For+the+users+of+my+free+app+to+make+an+donations+¤cy_code=CAD

Features:

1. It replaces colors which are *too bright*, not only white(#FFF), to a comfortable color.
2. After replacing the background color, if the text becomes unreadable, it will automatically change the text color to black(#000)
3. Similar to 2, after replacing the background color, if the border becomes unclear, it will automatically replace border color too.
4. You can add domains which you don't want to be changed to whitelist. 
5. It will not change color of special elements with class like code/highlight/syntax.

--

2022/12/21 update:
1. Add compatibility support for pages in dark mode

ver2.0 Updates:

1. You can custom the replace color now.
2. Add Positive / Passive mode. Positive Mode means the extension will replaces color for all domains, while Passive Mode means it will not work by default.
3. Removed "Force Replace Mode" button, cause the extension can automatically decide if it should be turned on or not now.
4. Removed "Change Border Style To Dashed" feature as its usage is too low.                    

확장 프로그램 기본 정보

이름 Eye Protector Eye Protector
ID fgadnbmmolnmbkbklpaojbogcopipopl
공식 URL https://chromewebstore.google.com/detail/eye-protector/fgadnbmmolnmbkbklpaojbogcopipopl
설명 May it be the best eye-protect extension on earth.
파일 크기 77.87 KB
설치 횟수 26,967
현재 버전 2.4
최근 업데이트 2022-12-22
출시 날짜 2019-12-17
평점 4.66/5 총 172 개의 평점
개발자 久远寺千歳
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/chitosai/eye_protector
도움말 페이지 URL https://github.com/chitosai/eye_protector
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "2.4",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "action": {
        "default_icon": {
            "19": "images\/icon.png",
            "38": "images\/icon.png"
        },
        "default_title": "\u8bbe\u7f6e\u8bbe\u7f6e",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/utility.js",
                "js\/main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "default_locale": "en"
}