DigitalA11Y Color Contrast Checker

Accessibility color contrast checker and color pallet generator

DigitalA11Y Color Contrast Checker란 무엇입니까?

DigitalA11Y Color Contrast Checker은(는) https://digitala11y.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Accessibility color contrast checker and color pallet generator"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

DigitalA11Y Color Contrast Checker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Accessibility color contrast checker and color pallet generator according to WCAG accessibility requirements.
It compares the color contrast ratio between the foreground and background of the elements that are on the page according to WCAG.

Features:
1.	 Be at the top of the web page for easy access
2.	 Picks the background and foreground colors from the web page with just a click.
3.	 Allows the manual input of background and foreground colors in hexadecimal values.
4.	 Provides the current ratio in a jiffy.
5.	 Suggests possible color codes that are contrastive as per WCAG guidelines.                    

확장 프로그램 기본 정보

이름 DigitalA11Y Color Contrast Checker DigitalA11Y Color Contrast Checker
ID hfcoldjibhgbnlambdiecfneiegagkhi
공식 URL https://chromewebstore.google.com/detail/digitala11y-color-contras/hfcoldjibhgbnlambdiecfneiegagkhi
설명 Accessibility color contrast checker and color pallet generator
파일 크기 71.24 KB
설치 횟수 899
현재 버전 1.0
최근 업데이트 2023-01-25
출시 날짜 2023-01-25
평점 4.50/5 총 4 개의 평점
개발자 https://digitala11y.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.digitala11y.com/
도움말 페이지 URL https://www.digitala11y.com/contact/
개인정보 보호 정책 페이지 URL https://www.digitala11y.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "DigitalA11Y Color Contrast Checker",
    "description": "Accessibility color contrast checker and color pallet generator",
    "version": "1.0",
    "action": {
        "default_title": "DigitalA11Y Color Contrast Checker"
    },
    "icons": {
        "32": "images\/icon32.png"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "styles.css",
                "index.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "cca.js"
            ]
        }
    ]
}