AutomaticXpathGenerator

This will generate xpaths for elements on the webpage

AutomaticXpathGenerator là gì?

AutomaticXpathGenerator là một tiện ích mở rộng Chrome được phát triển bởi Aamir Mohammed Suhail, và tính năng chính của nó là "This will generate xpaths for elements on the webpage".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng AutomaticXpathGenerator 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

                        This extension is used to generate the xpaths automatically for the web page. It will generate the xpaths for each and every element on the web page and displays it next to the corresponding web elements. User has to just click the xpath to copy and use it in automation script. Also for anyone who doesn't know how to write the xpaths, this extension will be very useful.                    

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

Tên AutomaticXpathGenerator AutomaticXpathGenerator
ID amcbnabgjffdhibpmgcnpnmjpfjliikh
URL Chính Thức https://chromewebstore.google.com/detail/automaticxpathgenerator/amcbnabgjffdhibpmgcnpnmjpfjliikh
Mô tả This will generate xpaths for elements on the webpage
Kích Thước Tệp 21.71 KB
Số Lần Cài Đặt 657
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2021-06-21
Ngày Phát Hành 2021-06-16
Đánh Giá 2.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Aamir Mohammed Suhail
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AutomaticXpathGenerator",
    "version": "1.2",
    "description": "This will generate xpaths for elements on the webpage",
    "icons": {
        "128": ".\/icons\/128_g.png",
        "48": ".\/icons\/48_g.png",
        "32": ".\/icons\/32_g.png",
        "16": ".\/icons\/16_g.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "demo.html",
        "default_icon": ".\/icons\/128_g.png"
    }
}