generate Xpath

Generate unique Xpath for a DOM element

O que é generate Xpath?

generate Xpath é uma extensão do Chrome desenvolvida por sudharma.puranik, e sua principal característica é "Generate unique Xpath for a DOM element".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão generate Xpath

Baixe arquivos de extensão generate Xpath 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

                        The main purpose of this extension is to generate a unique  Xpath-for a given HTML DOM Element. It may so happen that that if the element has no attributes, it tries to create shortcut with respect to text. This needs lot of improvement and this is my first experiment with chrome extensions hence kindly excuse for some trivial mistakes. 

Let me know if anything is not relevant or which may be missing.

Below are the few known issues which would be fixed soon.

1. have to fallback on the traditional xpath if no optimized xpath found.                    

Informações Básicas da Extensão

Nome generate Xpath generate Xpath
ID nonoedhghnjmnhnceofpkppdicphhfhf
URL Oficial https://chromewebstore.google.com/detail/generate-xpath/nonoedhghnjmnhnceofpkppdicphhfhf
Descrição Generate unique Xpath for a DOM element
Tamanho do Arquivo 90.01 KB
Contagem de Instalações 63
Versão Atual 1.0
Última Atualização 2013-12-24
Data de Publicação 2013-12-24
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor sudharma.puranik
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "generate Xpath",
    "description": "Generate unique Xpath for a DOM element",
    "version": "1.0",
    "permissions": [
        "activeTab",
        "contextMenus",
        "notifications"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "elementLocator.js",
                "content_script.js"
            ],
            "css": [
                "core.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery-2.0.3.min.map"
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "19": "xpath.png"
        },
        "default_title": "xpath generator"
    }
}