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
官方網址 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"
    ]
}