NerdeFocus

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

什麼是NerdeFocus?

NerdeFocus是由wizzyfx開發的Chrome擴展程式,該擴展的主要功能是“Quickly debug focus problems when testing a page for accessibility issues.”。

擴展截圖

screenshot

下載NerdeFocus擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}