Scan CSS

A script to inspect, scan and copy CSS properties of any element on the web page

O que é Scan CSS?

Scan CSS é uma extensão do Chrome desenvolvida por akshaymalik191, e sua principal característica é "A script to inspect, scan and copy CSS properties of any element on the web page".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Scan CSS

Baixe arquivos de extensão Scan CSS 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 free tool to inspect and edit CSS right in the browser without a need to open developer tools.

Press 'alt + s' to start the inspection.

Click on "Copy" to copy the CSS properties of the element.

Click on "Copy All" to copy the CSS properties of the element as well of its children.                    

Informações Básicas da Extensão

Nome Scan CSS Scan CSS
ID mkdaolldfcljbalhclcakgjjiklajdof
URL Oficial https://chromewebstore.google.com/detail/scan-css/mkdaolldfcljbalhclcakgjjiklajdof
Descrição A script to inspect, scan and copy CSS properties of any element on the web page
Tamanho do Arquivo 115 KB
Contagem de Instalações 293
Versão Atual 1.0.2
Última Atualização 2022-11-29
Data de Publicação 2022-11-26
Classificação 2.50/5 Total de 4 Avaliações
Desenvolvedor akshaymalik191
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scan CSS",
    "description": "A script to inspect, scan and copy CSS properties of any element on the web page",
    "version": "1.0.2",
    "icons": {
        "512": "icons\/Icon-512.png",
        "256": "icons\/Icon-256.png",
        "196": "icons\/Icon-196.png",
        "128": "icons\/Icon-128.png",
        "64": "icons\/Icon-64.png",
        "32": "icons\/Icon-32.png",
        "16": "icons\/Icon-16.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}