Focused Element
Highlight the focusing element and log it in console.
Τι είναι το Focused Element;
Το Focused Element είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον LiJunLe, και η κύρια λειτουργία του είναι "Highlight the focusing element and log it in console.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Focused Element
Λήψη αρχείων επέκτασης 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 |
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 } } |