NerdeRegion

Debug Aria Live Regions

什么是NerdeRegion?

NerdeRegion是由wizzyfx开发的Chrome扩展程序,该扩展的主要功能是“Debug Aria Live Regions”。

扩展截图

screenshot

下载NerdeRegion扩展crx文件

下载NerdeRegion扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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