Attribute Reporter

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

Attribute Reporter là gì?

Attribute Reporter là một tiện ích mở rộng Chrome được phát triển bởi https://damianofusco.com, và tính năng chính của nó là "Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Attribute Reporter

Tải xuống các tệp mở rộng Attribute Reporter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Attribute Reporter Attribute Reporter
ID agoffnfbofbgggpdoikchockhdekmkck
URL Chính Thức https://chromewebstore.google.com/detail/attribute-reporter/agoffnfbofbgggpdoikchockhdekmkck
Mô tả Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression
Kích Thước Tệp 84.67 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2023-01-07
Ngày Phát Hành 2020-08-17
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://damianofusco.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.damianofusco.com
URL Trang Trợ Giúp https://www.damianofusco.com
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}