xpath creator

create dynamic xpaths on the go.Check the browser console for xpaths

xpath creator là gì?

xpath creator là một tiện ích mở rộng Chrome được phát triển bởi sunilkumar.ramamurthy, và tính năng chính của nó là "create dynamic xpaths on the go.Check the browser console for xpaths".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng xpath creator 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 browser extension creates/generates all possible xpaths of any webelement.                    

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

Tên xpath creator xpath creator
ID elfinpbofafmkgjbmkfeboccoohncjam
URL Chính Thức https://chromewebstore.google.com/detail/xpath-creator/elfinpbofafmkgjbmkfeboccoohncjam
Mô tả create dynamic xpaths on the go.Check the browser console for xpaths
Kích Thước Tệp 39.09 KB
Số Lần Cài Đặt 65
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-09-24
Ngày Phát Hành 2019-09-22
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển sunilkumar.ramamurthy
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": "xpath creator",
    "version": "1.0",
    "manifest_version": 2,
    "description": "create dynamic xpaths on the go.Check the browser console for xpaths",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "create dynamic xpaths on the go.Check the browser console for xpaths",
        "default_icon": "icon16.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "generatexpath.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}