xpath creator

create dynamic xpaths on the go.Check the browser console for xpaths

Cos'è xpath creator?

xpath creator è un'estensione di Chrome sviluppata da sunilkumar.ramamurthy, e la sua funzione principale è "create dynamic xpaths on the go.Check the browser console for xpaths".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione xpath creator

Scarica i file di estensione xpath creator 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

                        This browser extension creates/generates all possible xpaths of any webelement.                    

Informazioni di Base sull'Estensione

Nome xpath creator xpath creator
ID elfinpbofafmkgjbmkfeboccoohncjam
URL Ufficiale https://chromewebstore.google.com/detail/xpath-creator/elfinpbofafmkgjbmkfeboccoohncjam
Descrizione create dynamic xpaths on the go.Check the browser console for xpaths
Dimensione del File 39.09 KB
Conteggio Installazioni 65
Versione Corrente 1.0
Ultimo Aggiornamento 2019-09-24
Data di Pubblicazione 2019-09-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore sunilkumar.ramamurthy
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "xpath creator",
    "version": "1.0",
    "manifest_version": 2,
    "description": "create dynamic xpaths on the go.Check the browser console for xpaths",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "create dynamic xpaths on the go.Check the browser console for xpaths",
        "default_icon": "icon16.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "generatexpath.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}