CSS Debugger

A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.

O que é CSS Debugger?

CSS Debugger é uma extensão do Chrome desenvolvida por Mathias Meldgaard Pedersen, e sua principal característica é "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão CSS Debugger

Baixe arquivos de extensão CSS Debugger 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

                        A simple extension that injects debug styles into any page helping you debug style and structure issues.                    

Informações Básicas da Extensão

Nome CSS Debugger CSS Debugger
ID jmlihgplnddolhopaoengncklepinhgc
URL Oficial https://chromewebstore.google.com/detail/css-debugger/jmlihgplnddolhopaoengncklepinhgc
Descrição A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.
Tamanho do Arquivo 7.27 KB
Contagem de Instalações 1,104
Versão Atual 0.1
Última Atualização 2020-04-07
Data de Publicação 2020-04-02
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Mathias Meldgaard Pedersen
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade http://www.mathiaspedersen.dk
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CSS Debugger",
    "version": "0.1",
    "description": "A lightweight extension for Google chrome that shows the outline of all CSS elements on the page.",
    "permissions": [
        "tabs"
    ],
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "CSS Debugger",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    }
}