Relative XPath Helper

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

Cos'è Relative XPath Helper?

Relative XPath Helper è un'estensione di Chrome sviluppata da syam sasi, e la sua funzione principale è "Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Relative XPath Helper

Scarica i file di estensione Relative XPath Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Relative XPath Helper Relative XPath Helper
ID eanaofphbanknlngejejepmfomkjaiic
URL Ufficiale https://chromewebstore.google.com/detail/relative-xpath-helper/eanaofphbanknlngejejepmfomkjaiic
Descrizione Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!
Dimensione del File 350 KB
Conteggio Installazioni 15,132
Versione Corrente 1.2.7
Ultimo Aggiornamento 2021-03-08
Data di Pubblicazione 2017-01-05
Valutazione 3.70/5 Totale 50 Valutazioni
Sviluppatore syam sasi
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.linkedin.com/pulse/finding-relative-xpath-made-easy-syam-sasi
Lingue Supportate 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"
    ]
}