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
电子邮箱 [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
    }
}