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