xPath Finder

Click on any element to get the xPath

xPath Finder란 무엇입니까?

xPath Finder은(는) Tomasz Rembacz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Click on any element to get the xPath"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

xPath Finder 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 xPath Finder xPath Finder
ID ihnknokegkbpmofmafnkoadfjkhlogph
공식 URL https://chromewebstore.google.com/detail/xpath-finder/ihnknokegkbpmofmafnkoadfjkhlogph
설명 Click on any element to get the xPath
파일 크기 15.28 KB
설치 횟수 73,533
현재 버전 1.0.2
최근 업데이트 2020-06-12
출시 날짜 2020-06-12
평점 3.32/5 총 34 개의 평점
개발자 Tomasz Rembacz
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    ]
}