Easy Screen Shader

Tint Chrome with a soothing hue to ease eye strain and fatigue.

Co to jest Easy Screen Shader?

Easy Screen Shader to rozszerzenie Chrome opracowane przez https://smalldatatools.com, a jego główną funkcją jest „Tint Chrome with a soothing hue to ease eye strain and fatigue.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Easy Screen Shader

Pobierz pliki rozszerzeń Easy Screen Shader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Looking for a way to protect your eyes from the harmful effects of blue light when using your computer at night? Check out this extension - a lightweight and user-friendly tool that can easily adjust your screen color to match the surroundings.

The extension helps reduce eye strain by putting a custom color overlay over web contents. It's a great way to avoid the excessive blue light emitted by computer screen particularly in low-light conditions.

The tool is very easy to set up. The options page lets you customize color value in the format of RGBA to suit your preferences. An ON/OFF switch lets you easily enable or disable the overlay feature. Once enabled, color overlay  will be put to all Chrome tabs based on the color you've set. You are free to disable overlay feature anytime.  

If you experience any issues or bugs, simply head over to our tool's homepage (https://www.smallcolortools.com) and fill out the bug report form.                    

Podstawowe informacje o rozszerzeniu

Nazwa Easy Screen Shader Easy Screen Shader
ID nkdpmojgpoofbaphakmefjfpnlhobhfj
Oficjalny URL https://chromewebstore.google.com/detail/easy-screen-shader/nkdpmojgpoofbaphakmefjfpnlhobhfj
Opis Tint Chrome with a soothing hue to ease eye strain and fatigue.
Rozmiar pliku 52.72 KB
Liczba instalacji 474
Aktualna Wersja 0.1.2
Ostatnia Aktualizacja 2024-01-17
Data Publikacji 2023-04-17
Deweloper https://smalldatatools.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.smalldatatools.com
Adres URL Strony Pomocy https://www.smalldatatools.com/contact-us.php
Adres URL Strony Polityki Prywatności https://www.smalldatatools.com/privacy-policy.php
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Easy Screen Shader",
    "description": "Tint Chrome with a soothing hue to ease eye strain and fatigue.",
    "version": "0.1.2",
    "action": {
        "default_icon": "images\/logo.png",
        "default_popup": "setting.html"
    },
    "icons": {
        "16": "images\/logo.png",
        "48": "images\/logo.png",
        "128": "images\/logo.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "\/js\/pagecolor.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}