DOM-Analyzer
Analyzes the number of nodes, depth and size of your DOM for profiling, speed or SEO purposes.
Cos'è DOM-Analyzer?
DOM-Analyzer è un'estensione di Chrome sviluppata da cnavast, e la sua funzione principale è "Analyzes the number of nodes, depth and size of your DOM for profiling, speed or SEO purposes.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione DOM-Analyzer
Scarica i file di estensione DOM-Analyzer 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
Learn what elements of your webpage are slowing down your rendering time or which ones are not SEO friendly with DOM-Analyzer! This tool allows you to explore the DOM, ordering each level by: - Nodes: number of nodes under each branch, - Depth: maximum depth under each branch, - Length: count of characters on that branch (without spaces). You will find this useful to find nodes that are specially heavy, have too many children or too many levels (which is usually bad when comes to rendering the page). You can go straight to the node's element by clicking on it or see which one it is by hovering over it.
Informazioni di Base sull'Estensione
Nome | DOM-Analyzer |
ID | hjaomadfoogedimonbneolajleaneifj |
URL Ufficiale | https://chromewebstore.google.com/detail/dom-analyzer/hjaomadfoogedimonbneolajleaneifj |
Descrizione | Analyzes the number of nodes, depth and size of your DOM for profiling, speed or SEO purposes. |
Dimensione del File | 19.52 KB |
Conteggio Installazioni | 2,070 |
Versione Corrente | 1.2.1 |
Ultimo Aggiornamento | 2019-05-29 |
Data di Pubblicazione | 2019-05-29 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | cnavast |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/cnavast/DOM-Analyzer/ |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DOM-Analyzer", "author": "cnavast", "incognito": "split", "homepage_url": "http:\/\/github.com\/cnavast\/DOM-Analyzer\/", "version": "1.2.1", "description": "Analyzes the number of nodes, depth and size of your DOM for profiling, speed or SEO purposes.", "browser_action": { "default_title": "DOM-Analyzer", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage" ], "devtools_page": "devtools.html", "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png", "128": "icon.png" }, "manifest_version": 2 } |