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
公式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
Eメール [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"
        }
    }
}