ARIA DevTools
Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications.
ARIA DevTools là gì?
ARIA DevTools là một tiện ích mở rộng Chrome được phát triển bởi Mateusz Zieliński, và tính năng chính của nó là "Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ARIA DevTools
Tải xuống các tệp mở rộng ARIA DevTools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ARIA DevTools |
ID | dneemiigcbbgbdjlcdjjnianlikimpck |
URL Chính Thức | https://chromewebstore.google.com/detail/aria-devtools/dneemiigcbbgbdjlcdjjnianlikimpck |
Mô tả | Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications. |
Kích Thước Tệp | 154 KB |
Số Lần Cài Đặt | 7,522 |
Phiên Bản Hiện Tại | 1.3.12 |
Cập Nhật Lần Cuối | 2024-01-22 |
Ngày Phát Hành | 2020-05-29 |
Đánh Giá | 4.88/5 Tổng số 26 Đánh Giá |
Nhà Phát Triển | Mateusz Zieliński |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ziolko/aria-devtools |
URL Trang Trợ Giúp | https://github.com/ziolko/aria-devtools/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |