Colour Contrast Checker

Check the contrast between different colour combinations against WCAG standards

Colour Contrast Checkerとは何ですか?

Colour Contrast Checkerはhttps://colourcontrast.ccによって開発されたChromeの拡張機能で、その主な機能は「Check the contrast between different colour combinations against WCAG standards」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Colour Contrast Checker拡張機能のCRXファイルをダウンロード

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