Focused Element

Highlight the focusing element and log it in console.

¿Qué es Focused Element?

Focused Element es una extensión de Chrome desarrollada por LiJunLe, y su función principal es "Highlight the focusing element and log it in console.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Focused Element

Descarga archivos de extensión Focused Element en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Focused Element Focused Element
ID elaccagjpdmjkcjogbdmcpcplfinifbh
URL Oficial https://chromewebstore.google.com/detail/focused-element/elaccagjpdmjkcjogbdmcpcplfinifbh
Descripción Highlight the focusing element and log it in console.
Tamaño del Archivo 27.42 KB
Cantidad de Instalaciones 1,140
Versión Actual 0.2.0
Última Actualización 2020-09-04
Fecha de Publicación 2019-04-20
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador LiJunLe
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/lijunle/chrome-extension-focused-element
URL de la Página de Ayuda https://github.com/lijunle/chrome-extension-focused-element/issues
Idiomas Soportados 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
    }
}