Accessibility View

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

Co to jest Accessibility View?

Accessibility View to rozszerzenie Chrome opracowane przez https://dword-design.de, a jego główną funkcją jest „Accessibility View converts an arbitrary website into its accessibility relevant form.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Accessibility View

Pobierz pliki rozszerzeń Accessibility View w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Accessibility View Accessibility View
ID ekpmnemcmjcimpnmofmiaeoggjkjohjg
Oficjalny URL https://chromewebstore.google.com/detail/accessibility-view/ekpmnemcmjcimpnmofmiaeoggjkjohjg
Opis Accessibility View converts an arbitrary website into its accessibility relevant form.
Rozmiar pliku 140 KB
Liczba instalacji 717
Aktualna Wersja 1.3.13
Ostatnia Aktualizacja 2020-10-01
Data Publikacji 2020-06-09
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://dword-design.de
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}