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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications."입니다.
확장 프로그램 스크린샷
ARIA DevTools 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } |