Focused Element
Highlight the focusing element and log it in console.
Was ist Focused Element?
Focused Element ist eine Chrome-Erweiterung, die von LiJunLe entwickelt wurde, und ihr Hauptmerkmal ist "Highlight the focusing element and log it in console.".
Erweiterungsscreenshots
Focused Element-Erweiterungs-CRX-Datei herunterladen
Laden Sie Focused Element-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Focused Element |
ID | elaccagjpdmjkcjogbdmcpcplfinifbh |
Offizielle URL | https://chromewebstore.google.com/detail/focused-element/elaccagjpdmjkcjogbdmcpcplfinifbh |
Beschreibung | Highlight the focusing element and log it in console. |
Dateigröße | 27.42 KB |
Installationsanzahl | 1,140 |
Aktuelle Version | 0.2.0 |
Letztes Update | 2020-09-04 |
Veröffentlichungsdatum | 2019-04-20 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | LiJunLe |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/lijunle/chrome-extension-focused-element |
Hilfeseite URL | https://github.com/lijunle/chrome-extension-focused-element/issues |
Unterstützte Sprachen | 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 } } |