ARIA DevTools
Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications.
Was ist ARIA DevTools?
ARIA DevTools ist eine Chrome-Erweiterung, die von Mateusz Zieliński entwickelt wurde, und ihr Hauptmerkmal ist "Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications.".
Erweiterungsscreenshots
ARIA DevTools-Erweiterungs-CRX-Datei herunterladen
Laden Sie ARIA DevTools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | ARIA DevTools |
ID | dneemiigcbbgbdjlcdjjnianlikimpck |
Offizielle URL | https://chromewebstore.google.com/detail/aria-devtools/dneemiigcbbgbdjlcdjjnianlikimpck |
Beschreibung | Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications. |
Dateigröße | 154 KB |
Installationsanzahl | 7,522 |
Aktuelle Version | 1.3.12 |
Letztes Update | 2024-01-22 |
Veröffentlichungsdatum | 2020-05-29 |
Bewertung | 4.88/5 Insgesamt 26 Bewertungen |
Entwickler | Mateusz Zieliński |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/ziolko/aria-devtools |
Hilfeseite URL | https://github.com/ziolko/aria-devtools/issues |
Unterstützte Sprachen | 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" ] } |