AutomaticXpathGenerator

This will generate xpaths for elements on the webpage

Co je AutomaticXpathGenerator?

AutomaticXpathGenerator je rozšíření Chrome vyvinuté Aamir Mohammed Suhail, a jeho hlavní funkcí je „This will generate xpaths for elements on the webpage“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření AutomaticXpathGenerator

Stáhněte si soubory rozšíření AutomaticXpathGenerator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension is used to generate the xpaths automatically for the web page. It will generate the xpaths for each and every element on the web page and displays it next to the corresponding web elements. User has to just click the xpath to copy and use it in automation script. Also for anyone who doesn't know how to write the xpaths, this extension will be very useful.                    

Základní Informace o Rozšíření

Název AutomaticXpathGenerator AutomaticXpathGenerator
ID amcbnabgjffdhibpmgcnpnmjpfjliikh
Oficiální URL https://chromewebstore.google.com/detail/automaticxpathgenerator/amcbnabgjffdhibpmgcnpnmjpfjliikh
Popis This will generate xpaths for elements on the webpage
Velikost souboru 21.71 KB
Počet instalací 657
Aktuální Verze 1.2
Poslední Aktualizace 2021-06-21
Datum Vydání 2021-06-16
Hodnocení 2.33/5 Celkem 6 Hodnocení
Vývojář Aamir Mohammed Suhail
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AutomaticXpathGenerator",
    "version": "1.2",
    "description": "This will generate xpaths for elements on the webpage",
    "icons": {
        "128": ".\/icons\/128_g.png",
        "48": ".\/icons\/48_g.png",
        "32": ".\/icons\/32_g.png",
        "16": ".\/icons\/16_g.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "demo.html",
        "default_icon": ".\/icons\/128_g.png"
    }
}