Attribute Reporter

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

Was ist Attribute Reporter?

Attribute Reporter ist eine Chrome-Erweiterung, die von https://damianofusco.com entwickelt wurde, und ihr Hauptmerkmal ist "Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression".

Erweiterungsscreenshots

screenshot
screenshot

Attribute Reporter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Attribute Reporter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Attribute Reporter Attribute Reporter
ID agoffnfbofbgggpdoikchockhdekmkck
Offizielle URL https://chromewebstore.google.com/detail/attribute-reporter/agoffnfbofbgggpdoikchockhdekmkck
Beschreibung Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression
Dateigröße 84.67 KB
Installationsanzahl 27
Aktuelle Version 1.5
Letztes Update 2023-01-07
Veröffentlichungsdatum 2020-08-17
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler https://damianofusco.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.damianofusco.com
Hilfeseite URL https://www.damianofusco.com
Unterstützte Sprachen 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"
        }
    }
}