Element Locator
Locate and save web elements and get their xpath/cssSelector code
Element Locator란 무엇입니까?
Element Locator은(는) yehudak에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Locate and save web elements and get their xpath/cssSelector code"입니다.
확장 프로그램 스크린샷
Element Locator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows you to locate and save HTML elements for each page(url), And shows XPath and CSS-Selector for each saved element. ***Great for web developers or for bulid faster Selenium Tests*** NOTE: After install finisg, open or refresh the page you want to work on. More Options: 1. Show list of element-attributes 2. Click on element in the elements list will show the chosen element on page 3. Mark (with border) all saved elements 4. Delete one / all saved element in current page(url)
확장 프로그램 기본 정보
이름 | Element Locator |
ID | pldlfgnilfdheajekfphjkjeooignhkc |
공식 URL | https://chromewebstore.google.com/detail/element-locator/pldlfgnilfdheajekfphjkjeooignhkc |
설명 | Locate and save web elements and get their xpath/cssSelector code |
파일 크기 | 264 KB |
설치 횟수 | 12,340 |
현재 버전 | 1.8 |
최근 업데이트 | 2019-06-06 |
출시 날짜 | 2019-06-06 |
평점 | 3.45/5 총 22 개의 평점 |
개발자 | yehudak |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Element Locator", "version": "1.8", "description": "Locate and save web elements and get their xpath\/cssSelector code", "icons": { "16": "images\/elementsLocator16.png", "48": "images\/elementsLocator48.png", "128": "images\/elementsLocator128.png" }, "permissions": [ "activeTab", "contextMenus" ], "browser_action": { "default_title": "Element Locator", "default_popup": "ElementLocator.html" }, "background": { "scripts": [ "node_modules\/idb-keyval\/dist\/idb-keyval-min.js", "scripts\/general.js", "scripts\/eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/general.js", "scripts\/contentScript.js" ] } ], "web_accessible_resources": [ "css\/general.css" ] } |