NerdeFocus
Quickly debug focus problems when testing a page for accessibility issues.
Wat is NerdeFocus?
NerdeFocus is een Chrome-extensie ontwikkeld door wizzyfx, en de belangrijkste functie is "Quickly debug focus problems when testing a page for accessibility issues.".
Extensie Screenshots
Download het CRX-bestand van de extensie NerdeFocus
Download NerdeFocus-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
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.
Basisinformatie over de Extensie
Naam | NerdeFocus |
ID | lpfiljldhgjecfepfljnbjnbjfhennpd |
Officiële URL | https://chromewebstore.google.com/detail/nerdefocus/lpfiljldhgjecfepfljnbjnbjfhennpd |
Beschrijving | Quickly debug focus problems when testing a page for accessibility issues. |
Bestandsgrootte | 46.69 KB |
Aantal Installaties | 2,067 |
Huidige Versie | 0.3.2 |
Laatst Bijgewerkt | 2022-01-12 |
Publicatiedatum | 2019-05-29 |
Beoordeling | 4.43/5 Totaal 7 Beoordelingen |
Ontwikkelaar | wizzyfx |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/wizzyfx/nerdeFocusPlugIn |
Help Pagina-URL | https://github.com/wizzyfx/nerdeFocusPlugIn/issues |
Ondersteunde Talen | 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" ] } ] } |