Xpath0r

Get robust relative xpaths

Xpath0r क्या है?

Xpath0r http://sites.google.com/site/kevinbouge द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get robust relative xpaths"।

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

screenshot

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

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

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

                        When clicking an element on a web page, this extension tries to provide a choice of robust relative xpath expressions which are displayed in the console. It also tries to provide a trust score so that unexperienced people can pick one of the best xpath expressions.

For example, for an h1 element on the page:

81% - //p[contains(@class, "h1")]
58% - //p[@role="heading" and contains(@class, "h1")]
50% - //p[contains(@role, "heading") and contains(@class, "h1")]

Or for a link:

90% - //a[@data-hash-id="skype-for-android"]
87% - //a[contains(@data-hash-id, "android")]
81% - //a[contains(@href, "android") and contains(@data-hash-id, "android")]
79% - //a[contains(@class, "learnMore") and contains(@href, "android")]
79% - //a[contains(@class, "learnMore") and contains(@data-hash-id, "android")]
77% - //a[contains(@class, "showOverlay") and contains(@data-hash-id, "android")]
71% - //a[contains(@href, "download") and contains(@data-hash-id, "android")]
50% - //a[contains(@href, "android") and contains(@data-hash-id, "for")]                    

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

नाम Xpath0r Xpath0r
ID nbbcbecdpkoglhojicjbmacepbgecnfp
आधिकारिक URL https://chrome.google.com/webstore/detail/xpath0r/nbbcbecdpkoglhojicjbmacepbgecnfp
विवरण Get robust relative xpaths
फ़ाइल का आकार 23.89 KB
स्थापना संख्या 22
वर्तमान संस्करण 1.5.0
अंतिम अपडेट 2015-03-02
प्रकाशन तिथि 2015-03-02
डेवलपर http://sites.google.com/site/kevinbouge
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "Xpath0rLib.js",
                "content.js"
            ]
        }
    ],
    "name": "Xpath0r",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/icon16.png"
    },
    "web_accessible_resources": [
        "icons\/*"
    ],
    "description": "Get robust relative xpaths",
    "background": {
        "persistent": false,
        "scripts": [
            "main.js"
        ]
    },
    "homepage_url": "http:\/\/cz.linkedin.com\/in\/kevinbouge\/",
    "version": "1.5.0",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icons\/icon16.png",
        "default_title": "Xpath0r"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "webNavigation",
        "notifications"
    ]
}