ARIA DevTools

Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications.

ARIA DevToolsคืออะไร?

ARIA DevTools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mateusz Zieliński และคุณลักษณะหลักของมันคือ "Easily spot missing ARIA labels, misused ARIA roles, and incomplete keyboard support in your web applications."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ARIA DevTools

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}