Accessibility View

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

Wat is Accessibility View?

Accessibility View is een Chrome-extensie ontwikkeld door https://dword-design.de, en de belangrijkste functie is "Accessibility View converts an arbitrary website into its accessibility relevant form.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Accessibility View

Download Accessibility View-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Accessibility View Accessibility View
ID ekpmnemcmjcimpnmofmiaeoggjkjohjg
Officiële URL https://chromewebstore.google.com/detail/accessibility-view/ekpmnemcmjcimpnmofmiaeoggjkjohjg
Beschrijving Accessibility View converts an arbitrary website into its accessibility relevant form.
Bestandsgrootte 140 KB
Aantal Installaties 717
Huidige Versie 1.3.13
Laatst Bijgewerkt 2020-10-01
Publicatiedatum 2020-06-09
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://dword-design.de
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}