generate Xpath
Generate unique Xpath for a DOM element
什么是generate Xpath?
generate Xpath是由sudharma.puranik开发的Chrome扩展程序,该扩展的主要功能是“Generate unique Xpath for a DOM element”。
扩展截图
下载generate Xpath扩展crx文件
下载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" } } |