generate Xpath
Generate unique Xpath for a DOM element
generate Xpath là gì?
generate Xpath là một tiện ích mở rộng Chrome được phát triển bởi sudharma.puranik, và tính năng chính của nó là "Generate unique Xpath for a DOM element".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng generate Xpath
Tải xuống các tệp mở rộng generate Xpath dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | generate Xpath |
ID | nonoedhghnjmnhnceofpkppdicphhfhf |
URL Chính Thức | https://chromewebstore.google.com/detail/generate-xpath/nonoedhghnjmnhnceofpkppdicphhfhf |
Mô tả | Generate unique Xpath for a DOM element |
Kích Thước Tệp | 90.01 KB |
Số Lần Cài Đặt | 63 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2013-12-24 |
Ngày Phát Hành | 2013-12-24 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | sudharma.puranik |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |