ARIA DevTools

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

Co to jest ARIA DevTools?

ARIA DevTools to rozszerzenie Chrome opracowane przez Mateusz Zieliński, a jego główną funkcją jest „Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ARIA DevTools

Pobierz pliki rozszerzeń ARIA DevTools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa ARIA DevTools ARIA DevTools
ID dneemiigcbbgbdjlcdjjnianlikimpck
Oficjalny URL https://chromewebstore.google.com/detail/aria-devtools/dneemiigcbbgbdjlcdjjnianlikimpck
Opis Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications.
Rozmiar pliku 154 KB
Liczba instalacji 7,522
Aktualna Wersja 1.3.12
Ostatnia Aktualizacja 2024-01-22
Data Publikacji 2020-05-29
Ocena 4.88/5 Łącznie 26 Oceny
Deweloper Mateusz Zieliński
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ziolko/aria-devtools
Adres URL Strony Pomocy https://github.com/ziolko/aria-devtools/issues
Obsługiwane Języki 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"
    ]
}