Relative XPath Helper

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

Relative XPath Helper란 무엇입니까?

Relative XPath Helper은(는) syam sasi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!"입니다.

확장 프로그램 스크린샷

screenshot

Relative XPath Helper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Relative XPath Helper Relative XPath Helper
ID eanaofphbanknlngejejepmfomkjaiic
공식 URL https://chromewebstore.google.com/detail/relative-xpath-helper/eanaofphbanknlngejejepmfomkjaiic
설명 Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!
파일 크기 350 KB
설치 횟수 15,132
현재 버전 1.2.7
최근 업데이트 2021-03-08
출시 날짜 2017-01-05
평점 3.70/5 총 50 개의 평점
개발자 syam sasi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.linkedin.com/pulse/finding-relative-xpath-made-easy-syam-sasi
지원되는 언어 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"
    ]
}