Grayscale Tool

Press shift+g (or create your own key shortcut) to (de)activate grayscaling of a web page.

Что такое Grayscale Tool?

Grayscale Tool - это расширение Chrome, разработанное Emanuel Malmquist, и его основная функция - "Press shift+g (or create your own key shortcut) to (de)activate grayscaling of a web page.".

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

screenshot

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

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

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

                        Originally intended for web designers who might want to test the contrast of their content by changing to grayscale, but this extension can really be used by anyone who for some reason want to remove the colors of a web page.

The grayscale persists between page loads, and the key shortcut to activate can be customized in the options.                    

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

Название Grayscale Tool Grayscale Tool
ID odolflphhameojgliipcnahnipmogigo
Официальный URL https://chromewebstore.google.com/detail/grayscale-tool/odolflphhameojgliipcnahnipmogigo
Описание Press shift+g (or create your own key shortcut) to (de)activate grayscaling of a web page.
Размер файла 4.44 KB
Количество установок 3,566
Текущая Версия 2.0
Последнее Обновление 2014-10-19
Дата публикации 2014-10-19
Рейтинг 2.57/5 Всего 46 оценок
Разработчик Emanuel Malmquist
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Grayscale Tool",
    "version": "2.0",
    "manifest_version": 2,
    "description": "Press shift+g (or create your own key shortcut) to (de)activate grayscaling of a web page.",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "",
                "file:\/\/\/*"
            ],
            "js": [
                "grayscale.js"
            ],
            "run_at": "document_end"
        }
    ]
}