ARIA DevTools

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

Qu'est-ce que ARIA DevTools ?

ARIA DevTools est une extension Chrome développée par Mateusz Zieliński, et sa fonction principale est "Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ARIA DevTools

Téléchargez les fichiers d'extension ARIA DevTools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom ARIA DevTools ARIA DevTools
ID dneemiigcbbgbdjlcdjjnianlikimpck
URL Officiel https://chromewebstore.google.com/detail/aria-devtools/dneemiigcbbgbdjlcdjjnianlikimpck
Description Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications.
Taille du Fichier 154 KB
Nombre d'Installations 7,522
Version Actuelle 1.3.12
Dernière Mise à Jour 2024-01-22
Date de Publication 2020-05-29
Évaluation 4.88/5 Total 26 Évaluations
Développeur Mateusz Zieliński
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ziolko/aria-devtools
URL de la Page d'Aide https://github.com/ziolko/aria-devtools/issues
Langues Prises en Charge 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"
    ]
}