Focused Element
Highlight the focusing element and log it in console.
Qu'est-ce que Focused Element ?
Focused Element est une extension Chrome développée par LiJunLe, et sa fonction principale est "Highlight the focusing element and log it in console.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Focused Element
Téléchargez les fichiers d'extension Focused Element au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Focused Element |
ID | elaccagjpdmjkcjogbdmcpcplfinifbh |
URL Officiel | https://chromewebstore.google.com/detail/focused-element/elaccagjpdmjkcjogbdmcpcplfinifbh |
Description | Highlight the focusing element and log it in console. |
Taille du Fichier | 27.42 KB |
Nombre d'Installations | 1,140 |
Version Actuelle | 0.2.0 |
Dernière Mise à Jour | 2020-09-04 |
Date de Publication | 2019-04-20 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | LiJunLe |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/lijunle/chrome-extension-focused-element |
URL de la Page d'Aide | https://github.com/lijunle/chrome-extension-focused-element/issues |
Langues Prises en Charge | 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 } } |