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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
이메일 [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"
            ]
        }
    ]
}