Focused Element
Highlight the focusing element and log it in console.
Cos'è Focused Element?
Focused Element è un'estensione di Chrome sviluppata da LiJunLe, e la sua funzione principale è "Highlight the focusing element and log it in console.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Focused Element
Scarica i file di estensione Focused Element in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Focused Element |
ID | elaccagjpdmjkcjogbdmcpcplfinifbh |
URL Ufficiale | https://chromewebstore.google.com/detail/focused-element/elaccagjpdmjkcjogbdmcpcplfinifbh |
Descrizione | Highlight the focusing element and log it in console. |
Dimensione del File | 27.42 KB |
Conteggio Installazioni | 1,140 |
Versione Corrente | 0.2.0 |
Ultimo Aggiornamento | 2020-09-04 |
Data di Pubblicazione | 2019-04-20 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | LiJunLe |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/lijunle/chrome-extension-focused-element |
URL della Pagina di Aiuto | https://github.com/lijunle/chrome-extension-focused-element/issues |
Lingue Supportate | 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 } } |