Relative XPath Helper

Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!

Relative XPath Helper là gì?

Relative XPath Helper là một tiện ích mở rộng Chrome được phát triển bởi syam sasi, và tính năng chính của nó là "Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!".

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

screenshot

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

Tải xuống các tệp mở rộng Relative XPath Helper 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 simple extension for finding out relative xpath expression of two web elements.
Just right click on the elements you want to compare, or type in your expression and press enter.                    

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

Tên Relative XPath Helper Relative XPath Helper
ID eanaofphbanknlngejejepmfomkjaiic
URL Chính Thức https://chromewebstore.google.com/detail/relative-xpath-helper/eanaofphbanknlngejejepmfomkjaiic
Mô tả Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!
Kích Thước Tệp 350 KB
Số Lần Cài Đặt 15,132
Phiên Bản Hiện Tại 1.2.7
Cập Nhật Lần Cuối 2021-03-08
Ngày Phát Hành 2017-01-05
Đánh Giá 3.70/5 Tổng số 50 Đánh Giá
Nhà Phát Triển syam sasi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.linkedin.com/pulse/finding-relative-xpath-made-easy-syam-sasi
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Relative XPath Helper",
    "version": "1.2.7",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "description": "Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!",
    "background": {
        "page": "relxpathbackground.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "static\/icon_19x19.png",
            "38": "static\/icon_38x38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "relxpathcontent.css"
            ],
            "js": [
                "relxpathcontent.js"
            ]
        }
    ],
    "icons": {
        "16": "static\/icon_16x16.png",
        "32": "static\/icon_32x32.png",
        "48": "static\/icon_48x48.png",
        "128": "static\/icon_128x128.png"
    },
    "web_accessible_resources": [
        "relxpathpopup.css",
        "relxpathpopup.html",
        "relxpathpopup.js"
    ]
}