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ファイルをダウンロード

DigitalA11Y Color Contrast Checker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            ]
        }
    ]
}