ARIA Validator

Scans page for WAI-ARIA implementation issues.

ARIA Validator là gì?

ARIA Validator là một tiện ích mở rộng Chrome được phát triển bởi RickBrown, và tính năng chính của nó là "Scans page for WAI-ARIA implementation issues.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ARIA Validator

Tải xuống các tệp mở rộng ARIA Validator 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

                        Adds a button to Chrome that you can click when you want to validate the ARIA implementation of the HTML page you are viewing. Also checks for duplicate IDs in your HTML.

It will open a new tab showing errors and warnings for each frame it can read on the page.

Note: you may have to reload open tabs after installing this extension before it will function on them.

Disclaimers:
1. This is beta software.
2. It will not find ALL issues.
3. You should use this tool to help you avoid simple mistakes when implementing ARIA.

New in 0.10
- Fixed bug in validating "aria-owns" in frames.
- Fixed formatting issue in "aria-owns" warning.

New in 0.9
- Tweaks to formatting of error messages.

New in 0.8
- Takes implicit semantics from native HTML elements into account.

New in 0.7
- Now checks elements with "aria-" attributes but no aria role (these checks can be disabled in Options)

New in 0.6:
- Added "Zoom" button to make it easier to see long messages.
- Added checks for abstract roles.
- A few minor bug fixes.

New in 0.5:
- Validator failed on Mac OSX if element ids contained curly braces.
- Added (optional) ID check - yes it's not part of ARIA but ARIA relies on IDs.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ARIA Validator ARIA Validator
ID oigghlanfjgnkcndchmnlnmaojahnjoc
URL Chính Thức https://chromewebstore.google.com/detail/aria-validator/oigghlanfjgnkcndchmnlnmaojahnjoc
Mô tả Scans page for WAI-ARIA implementation issues.
Kích Thước Tệp 102 KB
Số Lần Cài Đặt 2,935
Phiên Bản Hiện Tại 0.10
Cập Nhật Lần Cuối 2014-08-06
Ngày Phát Hành 2014-08-06
Đánh Giá 2.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển RickBrown
Loại Thanh Toán free
Trang Web Mở Rộng https://code.google.com/p/aria-toolkit/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ARIA Validator",
    "description": "Scans page for WAI-ARIA implementation issues.",
    "author": "Rick Brown",
    "version": "0.10",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon\/16\/AVLogo.png",
        "48": "icon\/48\/AVLogo.png",
        "128": "icon\/128\/AVLogo.png"
    },
    "browser_action": {
        "default_icon": "icon\/48\/AVLogo.png",
        "default_title": "Validate ARIA"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js",
                "js\/validation.runner-layer.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ]
}