Attribute Reporter

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

Cos'è Attribute Reporter?

Attribute Reporter è un'estensione di Chrome sviluppata da https://damianofusco.com, e la sua funzione principale è "Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Attribute Reporter

Scarica i file di estensione Attribute Reporter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Attribute Reporter Attribute Reporter
ID agoffnfbofbgggpdoikchockhdekmkck
URL Ufficiale https://chromewebstore.google.com/detail/attribute-reporter/agoffnfbofbgggpdoikchockhdekmkck
Descrizione Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression
Dimensione del File 84.67 KB
Conteggio Installazioni 27
Versione Corrente 1.5
Ultimo Aggiornamento 2023-01-07
Data di Pubblicazione 2020-08-17
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore https://damianofusco.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.damianofusco.com
URL della Pagina di Aiuto https://www.damianofusco.com
Lingue Supportate 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"
        }
    }
}