Fix Contrast

Fix color contrast issues on websites automatically.

Fix Contrastとは何ですか?

Fix ContrastはFirstversionistによって開発されたChromeの拡張機能で、その主な機能は「Fix color contrast issues on websites automatically.」です。

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

screenshot
screenshot
screenshot

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

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

拡張機能の使用方法

                        Low contrast text is the most common accessibility issue and affects 85% of pages. Text with sufficient contrast makes text readable to all users, including those with low vision, color blindness or environmental interference.

This extension will automatically fix low color contrast on any site you visit. Set your minimum level of contrast and this extension will automatically force any site you visit to meet your preferences. 

Make every site readable without overwriting the rest of the design. Easily pick between ""Medium"" (WCAG AA level) and ""High"" (WCAG AAA level) contrast and optionally force the background color to change when needed as well for optimal readability.

Fix Contrast is free, does not run any external code, has no tracking and is supported by the Polypane browser for developers. For more, visit https://polypane.com

We are always looking for people to translate it into more languages, please reach out!                    

拡張機能の基本情報

名前 Fix Contrast Fix Contrast
ID pbbcgecjmpkglppfjjggkkbhdnlemhkg
公式URL https://chromewebstore.google.com/detail/fix-contrast/pbbcgecjmpkglppfjjggkkbhdnlemhkg
説明 Fix color contrast issues on websites automatically.
ファイルサイズ 83.52 KB
インストール数 1,108
現在のバージョン 1.0.3
最終更新日 2022-04-14
公開日 2021-05-24
評価 3.00/5 合計 3 レビュー
開発者 Firstversionist
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://fixa11y.com
ヘルプページのURL https://fixa11y.com
プライバシーポリシーページのURL https://firstversionist.com/privacy
対応言語 de,en,nl,pt-BR,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appname__",
    "version": "1.0.3",
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "__MSG_appname__",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "js": [
                "contentScript.js"
            ]
        }
    ]
}