Relative XPath Helper

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

Co to jest Relative XPath Helper?

Relative XPath Helper to rozszerzenie Chrome opracowane przez syam sasi, a jego główną funkcją jest „Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Relative XPath Helper

Pobierz pliki rozszerzeń Relative XPath Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Relative XPath Helper Relative XPath Helper
ID eanaofphbanknlngejejepmfomkjaiic
Oficjalny URL https://chromewebstore.google.com/detail/relative-xpath-helper/eanaofphbanknlngejejepmfomkjaiic
Opis Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!
Rozmiar pliku 350 KB
Liczba instalacji 15,132
Aktualna Wersja 1.2.7
Ostatnia Aktualizacja 2021-03-08
Data Publikacji 2017-01-05
Ocena 3.70/5 Łącznie 50 Oceny
Deweloper syam sasi
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.linkedin.com/pulse/finding-relative-xpath-made-easy-syam-sasi
Obsługiwane Języki 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"
    ]
}