Elements highlighter
Highlights items by css class prefix or attribute name
Cos'è Elements highlighter?
Elements highlighter è un'estensione di Chrome sviluppata da Egor Ivanov, e la sua funzione principale è "Highlights items by css class prefix or attribute name".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Elements highlighter
Scarica i file di estensione Elements highlighter 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
Red color for items that have highlighted children. Blue for items without highlighted children.
Informazioni di Base sull'Estensione
Nome | Elements highlighter |
ID | jkklghcbhnagpddobffcifghgmkmojjf |
URL Ufficiale | https://chromewebstore.google.com/detail/elements-highlighter/jkklghcbhnagpddobffcifghgmkmojjf |
Descrizione | Highlights items by css class prefix or attribute name |
Dimensione del File | 198 KB |
Conteggio Installazioni | 52 |
Versione Corrente | 1.10.0 |
Ultimo Aggiornamento | 2020-05-23 |
Data di Pubblicazione | 2020-05-22 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Egor Ivanov |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Elements highlighter", "description": "Highlights items by css class prefix or attribute name", "version": "1.10.0", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "96": "images\/icon96.png", "128": "images\/icon128.png" }, "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "js\/background.js", "js\/highlightElements.js" ], "persistent": false }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "commands": { "highlight": { "suggested_key": { "default": "Ctrl+H", "mac": "MacCtrl+H" }, "description": "Highlight elements" } }, "options_page": "options.html", "browser_action": { "default_title": "Highlight elements", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "96": "images\/icon96.png", "128": "images\/icon128.png" }, "default_popup": "popup.html" }, "manifest_version": 2 } |