Accessibility View

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

什么是Accessibility View?

Accessibility View是由https://dword-design.de开发的Chrome扩展程序,该扩展的主要功能是“Accessibility View converts an arbitrary website into its accessibility relevant form.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Accessibility View扩展crx文件

下载Accessibility View扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Accessibility View Accessibility View
ID ekpmnemcmjcimpnmofmiaeoggjkjohjg
官方URL https://chromewebstore.google.com/detail/accessibility-view/ekpmnemcmjcimpnmofmiaeoggjkjohjg
简介 Accessibility View converts an arbitrary website into its accessibility relevant form.
文件大小 140 KB
安装次数 717
当前版本 1.3.13
更新时间 2020-10-01
上架时间 2020-06-09
评分 5.00/5 共1次评分
开发者 https://dword-design.de
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}