xPath Finder

Click on any element to get the xPath

xPath Finder là gì?

xPath Finder là một tiện ích mở rộng Chrome được phát triển bởi Tomasz Rembacz, và tính năng chính của nó là "Click on any element to get the xPath".

Ả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 xPath Finder

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

                        Plugin to get the elements xPath.

Usage:
1. Click on the plugin icon, cursor will be changed to the crosshair
2. Hover over the desired element (elements are highlighted on hover)
3. Click on the element and his xPath will display in the panel at the bottom of the page

Options:
- turn on/off inspector,
- turn on/off auto copy to clipboard,
- choose between short ID's or normal path,
- change xpath box position                    

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

Tên xPath Finder xPath Finder
ID ihnknokegkbpmofmafnkoadfjkhlogph
URL Chính Thức https://chromewebstore.google.com/detail/xpath-finder/ihnknokegkbpmofmafnkoadfjkhlogph
Mô tả Click on any element to get the xPath
Kích Thước Tệp 15.28 KB
Số Lần Cài Đặt 73,533
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2020-06-12
Ngày Phát Hành 2020-06-12
Đánh Giá 3.32/5 Tổng số 34 Đánh Giá
Nhà Phát Triển Tomasz Rembacz
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",
    "manifest_version": 2,
    "name": "xPath Finder",
    "description": "Click on any element to get the xPath",
    "homepage_url": "https:\/\/github.com\/trembacz\/xpath-finder",
    "version": "1.0.2",
    "icons": {
        "64": "icons\/default-64.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/default-64.png",
        "default_title": "Click on any element to get the xPath"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "inspect.js"
            ]
        }
    ],
    "commands": {
        "toggle-xpath": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            },
            "description": "Toggle plugin"
        }
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "activeTab",
        "",
        "storage"
    ]
}