DigitalA11Y Color Contrast Checker

Accessibility color contrast checker and color pallet generator

ما هو DigitalA11Y Color Contrast Checker؟

DigitalA11Y Color Contrast Checker هو إضافة Chrome تم تطويرها بواسطة https://digitala11y.com، والميزة الرئيسية لها هي "Accessibility color contrast checker and color pallet generator".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة DigitalA11Y Color Contrast Checker

قم بتنزيل ملفات الامتداد DigitalA11Y Color Contrast Checker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.digitala11y.com/
عنوان صفحة المساعدة https://www.digitala11y.com/contact/
عنوان صفحة سياسة الخصوصية 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"
            ]
        }
    ]
}