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
Eメール [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"
    ]
}