NerdeFocus
Quickly debug focus problems when testing a page for accessibility issues.
Was ist NerdeFocus?
NerdeFocus ist eine Chrome-Erweiterung, die von wizzyfx entwickelt wurde, und ihr Hauptmerkmal ist "Quickly debug focus problems when testing a page for accessibility issues.".
Erweiterungsscreenshots
NerdeFocus-Erweiterungs-CRX-Datei herunterladen
Laden Sie NerdeFocus-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
When activated, NerdeFocus displays the focus history with CSS selectors, and overlays an easy-to-follow focus indicator on the page. NerdeFocus is great for detecting focus resets, testing keyboard focus, and debugging screen reader issues in modern web apps. To use the extension, open your browser’s Developer Tools, navigate to the NerdeFocus tab, and click "Record". NerdeFocus is a free and Open-source project.
Grundlegende Informationen zur Erweiterung
Name | NerdeFocus |
ID | lpfiljldhgjecfepfljnbjnbjfhennpd |
Offizielle URL | https://chromewebstore.google.com/detail/nerdefocus/lpfiljldhgjecfepfljnbjnbjfhennpd |
Beschreibung | Quickly debug focus problems when testing a page for accessibility issues. |
Dateigröße | 46.69 KB |
Installationsanzahl | 2,067 |
Aktuelle Version | 0.3.2 |
Letztes Update | 2022-01-12 |
Veröffentlichungsdatum | 2019-05-29 |
Bewertung | 4.43/5 Insgesamt 7 Bewertungen |
Entwickler | wizzyfx |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/wizzyfx/nerdeFocusPlugIn |
Hilfeseite URL | https://github.com/wizzyfx/nerdeFocusPlugIn/issues |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NerdeFocus", "version": "0.3.2", "manifest_version": 2, "description": "Quickly debug focus problems when testing a page for accessibility issues.", "homepage_url": "https:\/\/github.com\/wizzyfx\/nerdeFocusPlugIn", "devtools_page": "src\/devtools\/devtools.html", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": false }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true, "js": [ "vendor\/jquery-3.2.1.slim.min.js", "src\/inject\/inject.js" ] } ] } |