Focused Element

Highlight the focusing element and log it in console.

Focused Elementとは何ですか?

Focused ElementはLiJunLeによって開発されたChromeの拡張機能で、その主な機能は「Highlight the focusing element and log it in console.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Focused Element拡張機能のCRXファイルをダウンロード

Focused Element拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        During debugging a page, sometimes it is very hard to notice which element is focusing in the page. This extension will highlight the focusing element and log it in console. Even after turn off the extension, the developer can hover on the element in console to find back the element in DOM structure.                    

拡張機能の基本情報

名前 Focused Element Focused Element
ID elaccagjpdmjkcjogbdmcpcplfinifbh
公式URL https://chromewebstore.google.com/detail/focused-element/elaccagjpdmjkcjogbdmcpcplfinifbh
説明 Highlight the focusing element and log it in console.
ファイルサイズ 27.42 KB
インストール数 1,140
現在のバージョン 0.2.0
最終更新日 2020-09-04
公開日 2019-04-20
評価 5.00/5 合計 2 レビュー
開発者 LiJunLe
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/lijunle/chrome-extension-focused-element
ヘルプページのURL https://github.com/lijunle/chrome-extension-focused-element/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Focused Element",
    "description": "Highlight the focusing element and log it in console.",
    "version": "0.2.0",
    "author": "Junle Li",
    "icons": {
        "16": "icons\/active-16.png",
        "32": "icons\/active-32.png",
        "48": "icons\/active-48.png",
        "128": "icons\/active-128.png"
    },
    "browser_action": {
        "default_title": "Enable",
        "default_icon": {
            "16": "icons\/inactive-16.png",
            "32": "icons\/inactive-32.png",
            "48": "icons\/inactive-48.png",
            "128": "icons\/inactive-128.png"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "lib\/background.js"
        ],
        "persistent": false
    }
}