Attribute Reporter

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

Co to jest Attribute Reporter?

Attribute Reporter to rozszerzenie Chrome opracowane przez https://damianofusco.com, a jego główną funkcją jest „Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Attribute Reporter

Pobierz pliki rozszerzeń Attribute Reporter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Attribute Reporter Attribute Reporter
ID agoffnfbofbgggpdoikchockhdekmkck
Oficjalny URL https://chromewebstore.google.com/detail/attribute-reporter/agoffnfbofbgggpdoikchockhdekmkck
Opis Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression
Rozmiar pliku 84.67 KB
Liczba instalacji 27
Aktualna Wersja 1.5
Ostatnia Aktualizacja 2023-01-07
Data Publikacji 2020-08-17
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper https://damianofusco.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.damianofusco.com
Adres URL Strony Pomocy https://www.damianofusco.com
Obsługiwane Języki 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"
        }
    }
}