NerdeRegion
Debug Aria Live Regions
NerdeRegionคืออะไร?
NerdeRegion เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wizzyfx และคุณลักษณะหลักของมันคือ "Debug Aria Live Regions"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NerdeRegion
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } ] } |