Outline Chrome Extension

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

O que é Outline Chrome Extension?

Outline Chrome Extension é uma extensão do Chrome desenvolvida por Alejandro Zepeda, e sua principal característica é "Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Outline Chrome Extension

Baixe arquivos de extensão Outline Chrome Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Outline Chrome Extension Outline Chrome Extension
ID gkakhdblgdnbknpibnflepnhcpmpohnm
URL Oficial https://chromewebstore.google.com/detail/outline-chrome-extension/gkakhdblgdnbknpibnflepnhcpmpohnm
Descrição Add an outline style and see the boundaries of every HTML element without affecting the layout (sizing or positioning).
Tamanho do Arquivo 12.84 KB
Contagem de Instalações 3,151
Versão Atual 0.1.0
Última Atualização 2022-06-16
Data de Publicação 2019-04-26
Classificação 5.00/5 Total de 7 Avaliações
Desenvolvedor Alejandro Zepeda
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/alejandrozepeda/outline-chrome-extension
Idiomas Suportados 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"
    ]
}