Kontrast - WCAG Contrast Checker

Quickly check and adjust contrast in realtime in your browser to meet WCAG 2.1 requirements.

Co to jest Kontrast - WCAG Contrast Checker?

Kontrast - WCAG Contrast Checker to rozszerzenie Chrome opracowane przez https://www.getkontrast.com, a jego główną funkcją jest „Quickly check and adjust contrast in realtime in your browser to meet WCAG 2.1 requirements.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Kontrast - WCAG Contrast Checker

Pobierz pliki rozszerzeń Kontrast - WCAG Contrast Checker 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

                        Kontrast is a browser extension that let you quickly check and adjust text and background contrast in realtime in your browser to meet the standards of Web Content Accessibility Guidelines (WCAG) requirements.

Features:
✔ Auto inspect contrast for the selected element
✔ Display accessibility ratio
✔ Automatically get closest WCAG compliant color
✔ Color Slider
✔ RGB and HSL mode
✔ Color picker
✔ Easily copy color (HEX, RGBA, HSLA)
✔ Ignore CSS hover effect
✔ Dark Mode

Special thanks to Gary Simon from Coursetro.com for covering my product.                    

Podstawowe informacje o rozszerzeniu

Nazwa Kontrast - WCAG Contrast Checker Kontrast - WCAG Contrast Checker
ID haphaaenepedkjngghandlmhfillnhjk
Oficjalny URL https://chromewebstore.google.com/detail/kontrast-wcag-contrast-ch/haphaaenepedkjngghandlmhfillnhjk
Opis Quickly check and adjust contrast in realtime in your browser to meet WCAG 2.1 requirements.
Rozmiar pliku 396 KB
Liczba instalacji 7,552
Aktualna Wersja 1.1.9
Ostatnia Aktualizacja 2020-05-23
Data Publikacji 2020-05-21
Ocena 3.53/5 Łącznie 17 Oceny
Deweloper https://www.getkontrast.com
E-mail [email protected]
Typ Płatności in_app
Strona Rozszerzenia https://www.getkontrast.com
Adres URL Strony Pomocy https://www.getkontrast.com
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kontrast - WCAG Contrast Checker",
    "version": "1.1.9",
    "description": "Quickly check and adjust contrast in realtime in your browser to meet WCAG 2.1 requirements.",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "*:\/\/*.gumroad.com\/*",
        "storage",
        "activeTab",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/kontrast16.png",
            "32": "images\/kontrast32.png",
            "48": "images\/kontrast48.png",
            "128": "images\/kontrast128.png"
        }
    },
    "icons": {
        "16": "images\/kontrast16.png",
        "32": "images\/kontrast32.png",
        "48": "images\/kontrast48.png",
        "128": "images\/kontrast128.png"
    },
    "web_accessible_resources": [
        "content.css",
        "iframe.html"
    ],
    "manifest_version": 2
}