NerdeFocus

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

NerdeFocus là gì?

NerdeFocus là một tiện ích mở rộng Chrome được phát triển bởi wizzyfx, và tính năng chính của nó là "Quickly debug focus problems when testing a page for accessibility issues.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng NerdeFocus

Tải xuống các tệp mở rộng NerdeFocus dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NerdeFocus NerdeFocus
ID lpfiljldhgjecfepfljnbjnbjfhennpd
URL Chính Thức https://chromewebstore.google.com/detail/nerdefocus/lpfiljldhgjecfepfljnbjnbjfhennpd
Mô tả Quickly debug focus problems when testing a page for accessibility issues.
Kích Thước Tệp 46.69 KB
Số Lần Cài Đặt 2,067
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2022-01-12
Ngày Phát Hành 2019-05-29
Đánh Giá 4.43/5 Tổng số 7 Đánh Giá
Nhà Phát Triển wizzyfx
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/wizzyfx/nerdeFocusPlugIn
URL Trang Trợ Giúp https://github.com/wizzyfx/nerdeFocusPlugIn/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}