Grayscale Screen

Converts the screen to grayscale

Что такое Grayscale Screen?

Grayscale Screen - это расширение Chrome, разработанное paperlite831, и его основная функция - "Converts the screen to grayscale".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Grayscale Screen

Скачайте файлы расширений Grayscale Screen в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        In the modern age of technology, where we spend significant time in front of screens, eye strain has become a common concern. The Greyscale Extension offers a unique solution to alleviate eye strain and promote visual comfort. By converting webpages to greyscale, it reduces the harsh contrast and vibrant colors that can strain the eyes. The subtle shades of grey create a more soothing and balanced visual experience. This not only helps individuals with existing eye conditions but also prevents potential eye strain for those who spend long hours browsing the internet. With the Greyscale Extension, users can enjoy a more relaxed and comfortable browsing experience while prioritizing their eye health in the digital era.                    

Основная информация о расширении

Название Grayscale Screen Grayscale Screen
ID mccgphkdghdpebkjkokhbodbjobpihal
Официальный URL https://chromewebstore.google.com/detail/grayscale-screen/mccgphkdghdpebkjkokhbodbjobpihal
Описание Converts the screen to grayscale
Размер файла 6.94 KB
Количество установок 185
Текущая Версия 1.0
Последнее Обновление 2023-06-05
Дата публикации 2023-06-04
Рейтинг 2.75/5 Всего 4 оценок
Разработчик paperlite831
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Grayscale Screen",
    "version": "1.0",
    "description": "Converts the screen to grayscale",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "icons": {
        "48": "icon48.png"
    },
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon48.png"
        }
    },
    "commands": {
        "toggle-grayscale": {
            "suggested_key": {
                "default": "Ctrl+Shift+G",
                "mac": "MacCtrl+Shift+G"
            },
            "description": "Toggle Grayscale"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "popup.html",
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}