NerdeFocus
Quickly debug focus problems when testing a page for accessibility issues.
Что такое NerdeFocus?
NerdeFocus - это расширение Chrome, разработанное wizzyfx, и его основная функция - "Quickly debug focus problems when testing a page for accessibility issues.".
Снимки экрана расширения
Скачать файл CRX расширения NerdeFocus
Скачайте файлы расширений NerdeFocus в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | NerdeFocus |
ID | lpfiljldhgjecfepfljnbjnbjfhennpd |
Официальный URL | https://chromewebstore.google.com/detail/nerdefocus/lpfiljldhgjecfepfljnbjnbjfhennpd |
Описание | Quickly debug focus problems when testing a page for accessibility issues. |
Размер файла | 46.69 KB |
Количество установок | 2,067 |
Текущая Версия | 0.3.2 |
Последнее Обновление | 2022-01-12 |
Дата публикации | 2019-05-29 |
Рейтинг | 4.43/5 Всего 7 оценок |
Разработчик | wizzyfx |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/wizzyfx/nerdeFocusPlugIn |
URL страницы помощи | https://github.com/wizzyfx/nerdeFocusPlugIn/issues |
Поддерживаемые языки | 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" ] } ] } |