Attribute Reporter

Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression

O que é Attribute Reporter?

Attribute Reporter é uma extensão do Chrome desenvolvida por https://damianofusco.com, e sua principal característica é "Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Attribute Reporter

Baixe arquivos de extensão Attribute Reporter 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 dev tools extension that allows to inspect Html elements attributes by name or custom name and display a list with their values or missing values. It is possible to copy the value to the clipboard or the xpath expression to enable developers to quickly debug xpath expression selectors and validate their attributes can be selectable or are missing values etc.                    

Informações Básicas da Extensão

Nome Attribute Reporter Attribute Reporter
ID agoffnfbofbgggpdoikchockhdekmkck
URL Oficial https://chromewebstore.google.com/detail/attribute-reporter/agoffnfbofbgggpdoikchockhdekmkck
Descrição Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression
Tamanho do Arquivo 84.67 KB
Contagem de Instalações 27
Versão Atual 1.5
Última Atualização 2023-01-07
Data de Publicação 2020-08-17
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor https://damianofusco.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.damianofusco.com
URL da Página de Ajuda https://www.damianofusco.com
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Attribute Reporter",
    "version": "1.5",
    "description": "Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression",
    "author": "Damiano Fusco",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "64": "icon-64.png",
        "128": "icon-128.png",
        "256": "icon-256.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "clipboardRead"
    ],
    "devtools_page": "index.html",
    "action": {
        "default_title": "Attribute Reporter",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "48": "icon-48.png",
            "64": "icon-64.png",
            "128": "icon-128.png",
            "256": "icon-256.png"
        }
    }
}