Accessibility View

Accessibility View converts an arbitrary website into its accessibility relevant form.

Accessibility View là gì?

Accessibility View là một tiện ích mở rộng Chrome được phát triển bởi https://dword-design.de, và tính năng chính của nó là "Accessibility View converts an arbitrary website into its accessibility relevant form.".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        Have you ever wanted to see a website's structure from the view of a screen reader but without actually having to start a screen reader? Accessible View converts an arbitrary website into its accessibility relevant form. Think of it like a representation from the view of a screen reader. That means that it reverts any frontend adjustments and only shows things like:

• HTML5 structural elements like hav, header, main, footer, aside or articles
• Forms and form inputs
• Links
• Lists
• role attributes
• Hides aria-hidden elements
• Hides display: none elements

WIP:
• Show aria-labels
• Hint on missing image alt attributes
• Hint on title attributes since they are not well supported by screen readers                    

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

Tên Accessibility View Accessibility View
ID ekpmnemcmjcimpnmofmiaeoggjkjohjg
URL Chính Thức https://chromewebstore.google.com/detail/accessibility-view/ekpmnemcmjcimpnmofmiaeoggjkjohjg
Mô tả Accessibility View converts an arbitrary website into its accessibility relevant form.
Kích Thước Tệp 140 KB
Số Lần Cài Đặt 717
Phiên Bản Hiện Tại 1.3.13
Cập Nhật Lần Cuối 2020-10-01
Ngày Phát Hành 2020-06-09
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://dword-design.de
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Accessibility View",
    "version": "1.3.13",
    "description": "Accessibility View converts an arbitrary website into its accessibility relevant form.",
    "manifest_version": 2,
    "icons": {
        "128": "assets\/icon.png"
    },
    "browser_action": {
        "default_icon": "assets\/icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "browser-polyfill.js",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ]
}