generate Xpath
Generate unique Xpath for a DOM element
generate Xpathคืออะไร?
generate Xpath เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sudharma.puranik และคุณลักษณะหลักของมันคือ "Generate unique Xpath for a DOM element"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย generate Xpath
ดาวน์โหลดไฟล์ส่วนขยาย generate Xpath ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |