DOM Outliner
Outline elements within a webpage. Activate the extension and watch as DOM elements are highlighted with different colors.
¿Qué es DOM Outliner?
DOM Outliner es una extensión de Chrome desarrollada por noeclement, y su función principal es "Outline elements within a webpage. Activate the extension and watch as DOM elements are highlighted with different colors.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión DOM Outliner
Descarga archivos de extensión DOM Outliner en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Acting as an X-ray for your page, this extension allows you to visually outline and distinguish different elements within a webpage's Document Object Model (DOM). With this extension, you can easily identify and analyze the structure of a webpage, making it easier to debug and optimize your web projects. Simply activate the extension and watch as the DOM elements are highlighted with different colors, allowing you to quickly and easily identify and differentiate between them.
Información Básica de la Extensión
Nombre | DOM Outliner |
ID | bagbmhiblmhlllddcpdalmdohgaknibd |
URL Oficial | https://chromewebstore.google.com/detail/dom-outliner/bagbmhiblmhlllddcpdalmdohgaknibd |
Descripción | Outline elements within a webpage. Activate the extension and watch as DOM elements are highlighted with different colors. |
Tamaño del Archivo | 5.2 KB |
Cantidad de Instalaciones | 171 |
Versión Actual | 1.0 |
Última Actualización | 2023-01-26 |
Fecha de Publicación | 2023-01-01 |
Desarrollador | noeclement |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "DOM Outliner", "description": "Outline elements within a webpage. Activate the extension and watch as DOM elements are highlighted with different colors.", "version": "1.0", "background": { "service_worker": "background.js" }, "action": { "default_title": "Outline DOM elements of current page" }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab", "scripting" ] } |