NerdeFocus

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

NerdeFocusคืออะไร?

NerdeFocus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wizzyfx และคุณลักษณะหลักของมันคือ "Quickly debug focus problems when testing a page for accessibility issues."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NerdeFocus

ดาวน์โหลดไฟล์ส่วนขยาย NerdeFocus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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