generate Xpath

Generate unique Xpath for a DOM element

Qu'est-ce que generate Xpath ?

generate Xpath est une extension Chrome développée par sudharma.puranik, et sa fonction principale est "Generate unique Xpath for a DOM element".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension generate Xpath

Téléchargez les fichiers d'extension generate Xpath au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom generate Xpath generate Xpath
ID nonoedhghnjmnhnceofpkppdicphhfhf
URL Officiel https://chromewebstore.google.com/detail/generate-xpath/nonoedhghnjmnhnceofpkppdicphhfhf
Description Generate unique Xpath for a DOM element
Taille du Fichier 90.01 KB
Nombre d'Installations 63
Version Actuelle 1.0
Dernière Mise à Jour 2013-12-24
Date de Publication 2013-12-24
Évaluation 1.00/5 Total 1 Évaluations
Développeur sudharma.puranik
Type de Paiement free
Langues Prises en Charge 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"
    }
}