Attribute Reporter

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

什麼是Attribute Reporter?

Attribute Reporter是由https://damianofusco.com開發的Chrome擴展程式,該擴展的主要功能是“Dev Tools Extension to report on elements attributes and copy their value as text or xpath expression”。

擴展截圖

screenshot
screenshot

下載Attribute Reporter擴展crx文件

下載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
官方網址 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"
        }
    }
}