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
电子邮箱 [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"
        }
    }
}