NerdeFocus

Quickly debug focus problems when testing a page for accessibility issues.

NerdeFocus란 무엇입니까?

NerdeFocus은(는) wizzyfx에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly debug focus problems when testing a page for accessibility issues."입니다.

확장 프로그램 스크린샷

screenshot

NerdeFocus 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            ]
        }
    ]
}