NerdeRegion

Debug Aria Live Regions

NerdeRegion क्या है?

NerdeRegion wizzyfx द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Debug Aria Live Regions"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NerdeRegion एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}