Attribute Reporter

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

Wat is Attribute Reporter?

Attribute Reporter is een Chrome-extensie ontwikkeld door https://damianofusco.com, en de belangrijkste functie is "Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Attribute Reporter

Download Attribute Reporter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Attribute Reporter Attribute Reporter
ID agoffnfbofbgggpdoikchockhdekmkck
Officiële URL https://chromewebstore.google.com/detail/attribute-reporter/agoffnfbofbgggpdoikchockhdekmkck
Beschrijving Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression
Bestandsgrootte 84.67 KB
Aantal Installaties 27
Huidige Versie 1.5
Laatst Bijgewerkt 2023-01-07
Publicatiedatum 2020-08-17
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar https://damianofusco.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.damianofusco.com
Help Pagina-URL https://www.damianofusco.com
Ondersteunde Talen 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"
        }
    }
}