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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
        }
    }
}