DOM-Analyzer
Analyzes the number of nodes, depth and size of your DOM for profiling, speed or SEO purposes.
Co je DOM-Analyzer?
DOM-Analyzer je rozšíření Chrome vyvinuté cnavast, a jeho hlavní funkcí je „Analyzes the number of nodes, depth and size of your DOM for profiling, speed or SEO purposes.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření DOM-Analyzer
Stáhněte si soubory rozšíření DOM-Analyzer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | DOM-Analyzer |
ID | hjaomadfoogedimonbneolajleaneifj |
Oficiální URL | https://chromewebstore.google.com/detail/dom-analyzer/hjaomadfoogedimonbneolajleaneifj |
Popis | Analyzes the number of nodes, depth and size of your DOM for profiling, speed or SEO purposes. |
Velikost souboru | 19.52 KB |
Počet instalací | 2,070 |
Aktuální Verze | 1.2.1 |
Poslední Aktualizace | 2019-05-29 |
Datum Vydání | 2019-05-29 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | cnavast |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/cnavast/DOM-Analyzer/ |
Podporované Jazyky | 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 } |