generate Xpath

Generate unique Xpath for a DOM element

generate Xpath क्या है?

generate Xpath sudharma.puranik द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generate unique Xpath for a DOM element"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में generate Xpath एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    }
}