Attribute Reporter

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

ما هو Attribute Reporter؟

Attribute Reporter هو إضافة Chrome تم تطويرها بواسطة https://damianofusco.com، والميزة الرئيسية لها هي "Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Attribute Reporter

قم بتنزيل ملفات الامتداد Attribute Reporter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Attribute Reporter Attribute Reporter
ID agoffnfbofbgggpdoikchockhdekmkck
عنوان URL الرسمي https://chromewebstore.google.com/detail/attribute-reporter/agoffnfbofbgggpdoikchockhdekmkck
الوصف Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression
حجم الملف 84.67 KB
عدد التثبيتات 27
النسخة الحالية 1.5
آخر تحديث 2023-01-07
تاريخ النشر 2020-08-17
تقييم 5.00/5 مجموع تقييمات 4
المطور https://damianofusco.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.damianofusco.com
عنوان صفحة المساعدة https://www.damianofusco.com
اللغات المدعومة 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"
        }
    }
}