Colour Contrast Checker

Check the contrast between different colour combinations against WCAG standards

Что такое Colour Contrast Checker?

Colour Contrast Checker - это расширение Chrome, разработанное https://colourcontrast.cc, и его основная функция - "Check the contrast between different colour combinations against WCAG standards".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Colour Contrast Checker

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

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

                        Compare the contrast ratio of 2 colours, background and foreground, within a webpage against level 2 of the Web Content Accessibility Guidelines (WCAG).

*More information about understanding colour contrast:
https://webaim.org/articles/contrast/

Features

- Use the text fields to compare colours using Hex codes or colour names
- Use the colour picker tool to compare colours on a webpage
- Store up to 6 colour combinations you have compared (uses local storage) to refer back to later
- Quickly reverse background and foreground colours
- Generate a share link of colours compared

Once you have installed the extension you may need to reload the webpage you are currently on to begin using the extension.                    

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

Название Colour Contrast Checker Colour Contrast Checker
ID nmmjeclfkgjdomacpcflgdkgpphpmnfe
Официальный URL https://chromewebstore.google.com/detail/colour-contrast-checker/nmmjeclfkgjdomacpcflgdkgpphpmnfe
Описание Check the contrast between different colour combinations against WCAG standards
Размер файла 418 KB
Количество установок 36,215
Текущая Версия 1.4.2
Последнее Обновление 2023-05-17
Дата публикации 2019-09-06
Рейтинг 4.03/5 Всего 29 оценок
Разработчик https://colourcontrast.cc
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://colourcontrast.cc/
URL страницы помощи https://github.com/Pushedskydiver/CC-Checker-Chrome-Extension/issues
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Colour Contrast Checker",
    "short_name": "CC Checker",
    "description": "Check the contrast between different colour combinations against WCAG standards",
    "version": "1.4.2",
    "action": {
        "default_title": "Open CC Checker"
    },
    "icons": {
        "16": ".\/favicons\/favicon-16x16.png",
        "48": ".\/favicons\/favicon-48x48.png",
        "128": ".\/favicons\/favicon-128x128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "index.html",
                "fonts\/avenir-next-variable.woff2"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "background": {
        "service_worker": ".\/app\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/app\/content.js"
            ]
        }
    ]
}