ARIA DevTools

Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications.

ARIA DevTools क्या है?

ARIA DevTools Mateusz Zieliński द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ARIA DevTools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Creating accessible web applications is difficult. It gets even harder if you don't understand how people with disabilities use computers.

With ARIA DevTools you see your website the way screen readers present it to the blind users. All page elements are presented according to their explicit or implied ARIA roles. This includes headings, images, tables and form items beyond others.

It's now easy to spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support. This makes testing and development of accessible websites easier.

This is an Open Source project that can be found on Github: https://github.com/ziolko/aria-devtools                    

एक्सटेंशन की मूल जानकारी

नाम ARIA DevTools ARIA DevTools
ID dneemiigcbbgbdjlcdjjnianlikimpck
आधिकारिक URL https://chromewebstore.google.com/detail/aria-devtools/dneemiigcbbgbdjlcdjjnianlikimpck
विवरण Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications.
फ़ाइल का आकार 154 KB
स्थापना संख्या 7,522
वर्तमान संस्करण 1.3.12
अंतिम अपडेट 2024-01-22
प्रकाशन तिथि 2020-05-29
रेटिंग 4.88/5 कुल 26 रेटिंग्स
डेवलपर Mateusz Zieliński
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/ziolko/aria-devtools
सहायता पृष्ठ URL https://github.com/ziolko/aria-devtools/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ARIA DevTools",
    "version": "1.3.12",
    "manifest_version": 2,
    "description": "Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications.",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/aria-devtools\/dneemiigcbbgbdjlcdjjnianlikimpck?hl=en",
    "icons": {
        "256": "logo-256.png",
        "16": "logo-256.png",
        "48": "logo-256.png",
        "128": "logo-256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "ARIA DevTools"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+A",
                "mac": "Command+Shift+A",
                "chromeos": "Ctrl+Shift+A",
                "linux": "Ctrl+Shift+A"
            }
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}