Elements Viewer

See your elements height and width on webpage

O que é Elements Viewer?

Elements Viewer é uma extensão do Chrome desenvolvida por Seke Nikola, e sua principal característica é "See your elements height and width on webpage".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Elements Viewer

Baixe arquivos de extensão Elements Viewer 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

                        Element Viewer is a simple extension that helps front-end developers and designers to have a better visual representation of how elements are position on a web page.

Usage: Just press extension icon to toggle on and off.

Inspired by the tip from Gajus Kuizinas (https://github.com/gajus)                    

Informações Básicas da Extensão

Nome Elements Viewer Elements Viewer
ID okglkbdhaneaglfmkmbkmglobmondaoc
URL Oficial https://chromewebstore.google.com/detail/elements-viewer/okglkbdhaneaglfmkmbkmglobmondaoc
Descrição See your elements height and width on webpage
Tamanho do Arquivo 5.61 KB
Contagem de Instalações 107
Versão Atual 1
Última Atualização 2019-09-12
Data de Publicação 2019-09-12
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Seke Nikola
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Elements Viewer",
    "description": "See your elements height and width on webpage",
    "version": "1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "elements-viewer.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Elements Viewer"
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "manifest_version": 2
}