xpath creator

create dynamic xpaths on the go.Check the browser console for xpaths

xpath creator क्या है?

xpath creator sunilkumar.ramamurthy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "create dynamic xpaths on the go.Check the browser console for xpaths"।

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

screenshot
screenshot

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

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

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

                        This browser extension creates/generates all possible xpaths of any webelement.                    

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

नाम xpath creator xpath creator
ID elfinpbofafmkgjbmkfeboccoohncjam
आधिकारिक URL https://chromewebstore.google.com/detail/xpath-creator/elfinpbofafmkgjbmkfeboccoohncjam
विवरण create dynamic xpaths on the go.Check the browser console for xpaths
फ़ाइल का आकार 39.09 KB
स्थापना संख्या 65
वर्तमान संस्करण 1.0
अंतिम अपडेट 2019-09-24
प्रकाशन तिथि 2019-09-22
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर sunilkumar.ramamurthy
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "xpath creator",
    "version": "1.0",
    "manifest_version": 2,
    "description": "create dynamic xpaths on the go.Check the browser console for xpaths",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "create dynamic xpaths on the go.Check the browser console for xpaths",
        "default_icon": "icon16.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "generatexpath.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}