Relative XPath Helper

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

Qu'est-ce que Relative XPath Helper ?

Relative XPath Helper est une extension Chrome développée par syam sasi, et sa fonction principale est "Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Relative XPath Helper

Téléchargez les fichiers d'extension Relative XPath Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Relative XPath Helper Relative XPath Helper
ID eanaofphbanknlngejejepmfomkjaiic
URL Officiel https://chromewebstore.google.com/detail/relative-xpath-helper/eanaofphbanknlngejejepmfomkjaiic
Description Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!
Taille du Fichier 350 KB
Nombre d'Installations 15,132
Version Actuelle 1.2.7
Dernière Mise à Jour 2021-03-08
Date de Publication 2017-01-05
Évaluation 3.70/5 Total 50 Évaluations
Développeur syam sasi
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.linkedin.com/pulse/finding-relative-xpath-made-easy-syam-sasi
Langues Prises en Charge 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"
    ]
}