NerdeRegion

Debug Aria Live Regions

NerdeRegion란 무엇입니까?

NerdeRegion은(는) wizzyfx에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Debug Aria Live Regions"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        NerdeRegion is a developer tools extension for debugging live regions on a Web Page. When activated, it lists all active Aria live regions, and keeps a record of all mutations that has happened on the region. 

You can use NerdeRegion to,
- Check if a live region is being updated properly,
- Check if accessible name computation (beta) is done correctly,
- Check if live region is being re-used correctly.

To use the extension, open your browser’s Developer Tools, and navigate to the NerdeRegion tab.

NerdeRegion is a free and Open-source project. You can contribute to its source code, or create support requests on GitHub.                    

확장 프로그램 기본 정보

이름 NerdeRegion NerdeRegion
ID lkcampbojgmgobcfinlkgkodlnlpjieb
공식 URL https://chromewebstore.google.com/detail/nerderegion/lkcampbojgmgobcfinlkgkodlnlpjieb
설명 Debug Aria Live Regions
파일 크기 63.61 KB
설치 횟수 470
현재 버전 0.2.0
최근 업데이트 2022-05-16
출시 날짜 2019-10-22
개발자 wizzyfx
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/wizzyfx/nerdeRegionPlugIn
도움말 페이지 URL https://github.com/wizzyfx/nerdeRegionPlugIn/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NerdeRegion",
    "version": "0.2.0",
    "manifest_version": 2,
    "description": "Debug Aria Live Regions",
    "homepage_url": "https:\/\/github.com\/wizzyfx\/nerdeRegionPlugIn",
    "devtools_page": "src\/devtools\/devtools.html",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/service\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}