xpath creator

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

O que é xpath creator?

xpath creator é uma extensão do Chrome desenvolvida por sunilkumar.ramamurthy, e sua principal característica é "create dynamic xpaths on the go.Check the browser console for xpaths".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão xpath creator

Baixe arquivos de extensão xpath creator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome xpath creator xpath creator
ID elfinpbofafmkgjbmkfeboccoohncjam
URL Oficial https://chromewebstore.google.com/detail/xpath-creator/elfinpbofafmkgjbmkfeboccoohncjam
Descrição create dynamic xpaths on the go.Check the browser console for xpaths
Tamanho do Arquivo 39.09 KB
Contagem de Instalações 65
Versão Atual 1.0
Última Atualização 2019-09-24
Data de Publicação 2019-09-22
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor sunilkumar.ramamurthy
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}