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.」です。

拡張機能のスクリーンショット

screenshot

ARIA DevTools拡張機能のCRXファイルをダウンロード

ARIA DevTools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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 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
Eメール [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"
    ]
}