XPATH Builder

Toggle active state by clicking the extention icon. Then click on the DOM element and you get JS prompt with XPATH expression in it.

XPATH Builder란 무엇입니까?

XPATH Builder은(는) Rosen Suvariev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Toggle active state by clicking the extention icon. Then click on the DOM element and you get JS prompt with XPATH expression in it."입니다.

확장 프로그램 스크린샷

screenshot

XPATH Builder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        XPATH Builder is extension for building XPATH expressions as the name suggest. Here is how it works:

1) You install it
2) Go on the page you want to build expression for
2) Refresh the page and you will see small batch text in red of the bottom of the extension icon: "0"
3) Now click on the icon to activate it and you will see it is changed to "1" in green
4) Click on the DOM element you want to build expression for and you will get it as JS prompt
5) Copy it, modify it in the way you want (if you want) and paste it
6) Turn off the extension by clicking back on its icon  and you are done

NOTE: Do not forget to switch off your extension when you do not need it anymore                    

확장 프로그램 기본 정보

이름 XPATH Builder XPATH Builder
ID jcnefiekgjgajlpddpakgcpnkpphddpp
공식 URL https://chromewebstore.google.com/detail/xpath-builder/jcnefiekgjgajlpddpakgcpnkpphddpp
설명 Toggle active state by clicking the extention icon. Then click on the DOM element and you get JS prompt with XPATH expression in it.
파일 크기 16.32 KB
설치 횟수 1,019
현재 버전 0.0.6.0
최근 업데이트 2017-10-23
출시 날짜 2017-09-04
평점 2.33/5 총 3 개의 평점
개발자 Rosen Suvariev
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "XPATH Builder",
    "version": "0.0.6.0",
    "description": "Toggle active state by clicking the extention icon. Then click on the DOM element and you get JS prompt with XPATH expression in it.",
    "icons": {
        "16": "icon_16x16.png",
        "19": "icon_19x19.png",
        "32": "icon_32x32.png",
        "38": "icon_38x38.png",
        "48": "icon_48x48.png",
        "128": "icon_128x128.png"
    },
    "browser_action": {
        "default_title": "XPATH Builder",
        "default_icon": {
            "19": "icon_19x19.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "author": "Rosen Suvariev ",
    "permissions": [
        "activeTab"
    ],
    "minimum_chrome_version": "49.0.0"
}