Relative XPath Helper

Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!

Relative XPath Helper क्या है?

Relative XPath Helper syam sasi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!"।

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

screenshot

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

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

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

                        A simple extension for finding out relative xpath expression of two web elements.
Just right click on the elements you want to compare, or type in your expression and press enter.                    

एक्सटेंशन की मूल जानकारी

नाम Relative XPath Helper Relative XPath Helper
ID eanaofphbanknlngejejepmfomkjaiic
आधिकारिक URL https://chromewebstore.google.com/detail/relative-xpath-helper/eanaofphbanknlngejejepmfomkjaiic
विवरण Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!
फ़ाइल का आकार 350 KB
स्थापना संख्या 15,132
वर्तमान संस्करण 1.2.7
अंतिम अपडेट 2021-03-08
प्रकाशन तिथि 2017-01-05
रेटिंग 3.70/5 कुल 50 रेटिंग्स
डेवलपर syam sasi
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.linkedin.com/pulse/finding-relative-xpath-made-easy-syam-sasi
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Relative XPath Helper",
    "version": "1.2.7",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "description": "Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!",
    "background": {
        "page": "relxpathbackground.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "static\/icon_19x19.png",
            "38": "static\/icon_38x38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "relxpathcontent.css"
            ],
            "js": [
                "relxpathcontent.js"
            ]
        }
    ],
    "icons": {
        "16": "static\/icon_16x16.png",
        "32": "static\/icon_32x32.png",
        "48": "static\/icon_48x48.png",
        "128": "static\/icon_128x128.png"
    },
    "web_accessible_resources": [
        "relxpathpopup.css",
        "relxpathpopup.html",
        "relxpathpopup.js"
    ]
}