generate Xpath
Generate unique Xpath for a DOM element
generate Xpath란 무엇입니까?
generate Xpath은(는) sudharma.puranik에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate unique Xpath for a DOM element"입니다.
확장 프로그램 스크린샷
generate Xpath 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The main purpose of this extension is to generate a unique Xpath-for a given HTML DOM Element. It may so happen that that if the element has no attributes, it tries to create shortcut with respect to text. This needs lot of improvement and this is my first experiment with chrome extensions hence kindly excuse for some trivial mistakes. Let me know if anything is not relevant or which may be missing. Below are the few known issues which would be fixed soon. 1. have to fallback on the traditional xpath if no optimized xpath found.
확장 프로그램 기본 정보
이름 | generate Xpath |
ID | nonoedhghnjmnhnceofpkppdicphhfhf |
공식 URL | https://chromewebstore.google.com/detail/generate-xpath/nonoedhghnjmnhnceofpkppdicphhfhf |
설명 | Generate unique Xpath for a DOM element |
파일 크기 | 90.01 KB |
설치 횟수 | 63 |
현재 버전 | 1.0 |
최근 업데이트 | 2013-12-24 |
출시 날짜 | 2013-12-24 |
평점 | 1.00/5 총 1 개의 평점 |
개발자 | sudharma.puranik |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "generate Xpath", "description": "Generate unique Xpath for a DOM element", "version": "1.0", "permissions": [ "activeTab", "contextMenus", "notifications" ], "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "js": [ "jquery.js", "elementLocator.js", "content_script.js" ], "css": [ "core.css" ] } ], "web_accessible_resources": [ "jquery-2.0.3.min.map" ], "manifest_version": 2, "browser_action": { "default_icon": { "19": "xpath.png" }, "default_title": "xpath generator" } } |