generate Xpath
Generate unique Xpath for a DOM element
Co je generate Xpath?
generate Xpath je rozšíření Chrome vyvinuté sudharma.puranik, a jeho hlavní funkcí je „Generate unique Xpath for a DOM element“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření generate Xpath
Stáhněte si soubory rozšíření generate Xpath ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | nonoedhghnjmnhnceofpkppdicphhfhf |
Oficiální URL | https://chromewebstore.google.com/detail/generate-xpath/nonoedhghnjmnhnceofpkppdicphhfhf |
Popis | Generate unique Xpath for a DOM element |
Velikost souboru | 90.01 KB |
Počet instalací | 63 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2013-12-24 |
Datum Vydání | 2013-12-24 |
Hodnocení | 1.00/5 Celkem 1 Hodnocení |
Vývojář | sudharma.puranik |
Typ Platby | free |
Podporované Jazyky | 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" } } |