Eye Protector

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

Eye Protector क्या है?

Eye Protector 久远寺千歳 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "May it be the best eye-protect extension on earth."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Eye Protector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}