ChromeLens

Visual impairment simulation and auditing tools to develop for accessibility.

Was ist ChromeLens?

ChromeLens ist eine Chrome-Erweiterung, die von ngzhian entwickelt wurde, und ihr Hauptmerkmal ist "Visual impairment simulation and auditing tools to develop for accessibility.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

ChromeLens-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChromeLens-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        ChromeLens is a Google Chrome extension that provides a suite of tools to help with web accessibility development.

- Lens (Vision Simulator)
  Interact with a website as a completely/partially blind or a colorblind person.

- Accessibility Audit
  Run a website through an series of accessibility rules and easily discover elements in your website that do not comply with them.

- Tab-tracker
  Key website features should be navigable solely via the keyboard (tab button), while not making the user jump through hoops to get to a feature. With the tab-tracker, you can visually track the flow of navigation through a website.

Open sourced at https://github.com/chromelens/chromelens
Built during greylockhackfest 2016                    

Grundlegende Informationen zur Erweiterung

Name ChromeLens ChromeLens
ID idikgljglpfilbhaboonnpnnincjhjkd
Offizielle URL https://chromewebstore.google.com/detail/chromelens/idikgljglpfilbhaboonnpnnincjhjkd
Beschreibung Visual impairment simulation and auditing tools to develop for accessibility.
Dateigröße 105 KB
Installationsanzahl 72,740
Aktuelle Version 0.0.10
Letztes Update 2020-05-22
Veröffentlichungsdatum 2020-05-22
Bewertung 3.70/5 Insgesamt 30 Bewertungen
Entwickler ngzhian
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ChromeLens",
    "description": "Visual impairment simulation and auditing tools to develop for accessibility.",
    "version": "0.0.10",
    "minimum_chrome_version": "42",
    "devtools_page": "main.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "main.html",
        "panel.html",
        "build\/backend.js"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "icons\/chromelens2-48.png",
        "128": "icons\/chromelens2-128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab"
    ]
}