XPATH Builder

Toggle active state by clicking the extention icon. Then click on the DOM element and you get JS prompt with XPATH expression in it.

XPATH Builder क्या है?

XPATH Builder Rosen Suvariev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Toggle active state by clicking the extention icon. Then click on the DOM element and you get JS prompt with XPATH expression in it."।

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

screenshot

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

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

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

                        XPATH Builder is extension for building XPATH expressions as the name suggest. Here is how it works:

1) You install it
2) Go on the page you want to build expression for
2) Refresh the page and you will see small batch text in red of the bottom of the extension icon: "0"
3) Now click on the icon to activate it and you will see it is changed to "1" in green
4) Click on the DOM element you want to build expression for and you will get it as JS prompt
5) Copy it, modify it in the way you want (if you want) and paste it
6) Turn off the extension by clicking back on its icon  and you are done

NOTE: Do not forget to switch off your extension when you do not need it anymore                    

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

नाम XPATH Builder XPATH Builder
ID jcnefiekgjgajlpddpakgcpnkpphddpp
आधिकारिक URL https://chromewebstore.google.com/detail/xpath-builder/jcnefiekgjgajlpddpakgcpnkpphddpp
विवरण Toggle active state by clicking the extention icon. Then click on the DOM element and you get JS prompt with XPATH expression in it.
फ़ाइल का आकार 16.32 KB
स्थापना संख्या 1,019
वर्तमान संस्करण 0.0.6.0
अंतिम अपडेट 2017-10-23
प्रकाशन तिथि 2017-09-04
रेटिंग 2.33/5 कुल 3 रेटिंग्स
डेवलपर Rosen Suvariev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "XPATH Builder",
    "version": "0.0.6.0",
    "description": "Toggle active state by clicking the extention icon. Then click on the DOM element and you get JS prompt with XPATH expression in it.",
    "icons": {
        "16": "icon_16x16.png",
        "19": "icon_19x19.png",
        "32": "icon_32x32.png",
        "38": "icon_38x38.png",
        "48": "icon_48x48.png",
        "128": "icon_128x128.png"
    },
    "browser_action": {
        "default_title": "XPATH Builder",
        "default_icon": {
            "19": "icon_19x19.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "author": "Rosen Suvariev ",
    "permissions": [
        "activeTab"
    ],
    "minimum_chrome_version": "49.0.0"
}