Element Locator
Locate and save web elements and get their xpath/cssSelector code
Element Locatorคืออะไร?
Element Locator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yehudak และคุณลักษณะหลักของมันคือ "Locate and save web elements and get their xpath/cssSelector code"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Element Locator
ดาวน์โหลดไฟล์ส่วนขยาย Element Locator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |