Outline Chrome Extension

Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).

¿Qué es Outline Chrome Extension?

Outline Chrome Extension es una extensión de Chrome desarrollada por Alejandro Zepeda, y su función principal es "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Outline Chrome Extension

Descarga archivos de extensión Outline Chrome Extension 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

                        This extension will help you to add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning), it's great for web design, or just to verify that your HTML + CSS code is working as expected.                    

Información Básica de la Extensión

Nombre Outline Chrome Extension Outline Chrome Extension
ID gkakhdblgdnbknpibnflepnhcpmpohnm
URL Oficial https://chromewebstore.google.com/detail/outline-chrome-extension/gkakhdblgdnbknpibnflepnhcpmpohnm
Descripción Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).
Tamaño del Archivo 12.84 KB
Cantidad de Instalaciones 3,151
Versión Actual 0.1.0
Última Actualización 2022-06-16
Fecha de Publicación 2019-04-26
Calificación 5.00/5 Total de 7 Calificaciones
Desarrollador Alejandro Zepeda
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/alejandrozepeda/outline-chrome-extension
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Outline Chrome Extension",
    "version": "0.1.0",
    "author": "Alejandro Zepeda",
    "description": "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/alejandrozepeda\/outline-chrome-extension",
    "icons": {
        "128": "icons\/outline.png"
    },
    "browser_action": {
        "default_icon": "icons\/outline-black.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "*:\/\/*\/*",
        "",
        "storage",
        "activeTab"
    ]
}