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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}