Xpath0r
Get robust relative xpaths
Xpath0r란 무엇입니까?
Xpath0r은(는) http://sites.google.com/site/kevinbouge에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get robust relative xpaths"입니다.
확장 프로그램 스크린샷
Xpath0r 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
When clicking an element on a web page, this extension tries to provide a choice of robust relative xpath expressions which are displayed in the console. It also tries to provide a trust score so that unexperienced people can pick one of the best xpath expressions. For example, for an h1 element on the page: 81% - //p[contains(@class, "h1")] 58% - //p[@role="heading" and contains(@class, "h1")] 50% - //p[contains(@role, "heading") and contains(@class, "h1")] Or for a link: 90% - //a[@data-hash-id="skype-for-android"] 87% - //a[contains(@data-hash-id, "android")] 81% - //a[contains(@href, "android") and contains(@data-hash-id, "android")] 79% - //a[contains(@class, "learnMore") and contains(@href, "android")] 79% - //a[contains(@class, "learnMore") and contains(@data-hash-id, "android")] 77% - //a[contains(@class, "showOverlay") and contains(@data-hash-id, "android")] 71% - //a[contains(@href, "download") and contains(@data-hash-id, "android")] 50% - //a[contains(@href, "android") and contains(@data-hash-id, "for")]
확장 프로그램 기본 정보
이름 | |
ID | nbbcbecdpkoglhojicjbmacepbgecnfp |
공식 URL | https://chrome.google.com/webstore/detail/xpath0r/nbbcbecdpkoglhojicjbmacepbgecnfp |
설명 | Get robust relative xpaths |
파일 크기 | 23.89 KB |
설치 횟수 | 22 |
현재 버전 | 1.5.0 |
최근 업데이트 | 2015-03-02 |
출시 날짜 | 2015-03-02 |
개발자 | http://sites.google.com/site/kevinbouge |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true, "run_at": "document_end", "js": [ "Xpath0rLib.js", "content.js" ] } ], "name": "Xpath0r", "icons": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "16": "icons\/icon16.png" }, "web_accessible_resources": [ "icons\/*" ], "description": "Get robust relative xpaths", "background": { "persistent": false, "scripts": [ "main.js" ] }, "homepage_url": "http:\/\/cz.linkedin.com\/in\/kevinbouge\/", "version": "1.5.0", "manifest_version": 2, "browser_action": { "default_icon": "icons\/icon16.png", "default_title": "Xpath0r" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "contextMenus", "webNavigation", "notifications" ] } |