Fix Contrast

Fix color contrast issues on websites automatically.

Fix Contrast là gì?

Fix Contrast là một tiện ích mở rộng Chrome được phát triển bởi Firstversionist, và tính năng chính của nó là "Fix color contrast issues on websites automatically.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fix Contrast

Tải xuống các tệp mở rộng Fix Contrast dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fix Contrast Fix Contrast
ID pbbcgecjmpkglppfjjggkkbhdnlemhkg
URL Chính Thức https://chromewebstore.google.com/detail/fix-contrast/pbbcgecjmpkglppfjjggkkbhdnlemhkg
Mô tả Fix color contrast issues on websites automatically.
Kích Thước Tệp 83.52 KB
Số Lần Cài Đặt 1,108
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2022-04-14
Ngày Phát Hành 2021-05-24
Đánh Giá 3.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Firstversionist
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://fixa11y.com
URL Trang Trợ Giúp https://fixa11y.com
URL Trang Chính Sách Bảo Mật https://firstversionist.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}