xPath Finder

Click on any element to get the xPath

O que é xPath Finder?

xPath Finder é uma extensão do Chrome desenvolvida por Tomasz Rembacz, e sua principal característica é "Click on any element to get the xPath".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão xPath Finder

Baixe arquivos de extensão xPath Finder 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

                        Plugin to get the elements xPath.

Usage:
1. Click on the plugin icon, cursor will be changed to the crosshair
2. Hover over the desired element (elements are highlighted on hover)
3. Click on the element and his xPath will display in the panel at the bottom of the page

Options:
- turn on/off inspector,
- turn on/off auto copy to clipboard,
- choose between short ID's or normal path,
- change xpath box position                    

Informações Básicas da Extensão

Nome xPath Finder xPath Finder
ID ihnknokegkbpmofmafnkoadfjkhlogph
URL Oficial https://chromewebstore.google.com/detail/xpath-finder/ihnknokegkbpmofmafnkoadfjkhlogph
Descrição Click on any element to get the xPath
Tamanho do Arquivo 15.28 KB
Contagem de Instalações 73,533
Versão Atual 1.0.2
Última Atualização 2020-06-12
Data de Publicação 2020-06-12
Classificação 3.32/5 Total de 34 Avaliações
Desenvolvedor Tomasz Rembacz
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "xPath Finder",
    "description": "Click on any element to get the xPath",
    "homepage_url": "https:\/\/github.com\/trembacz\/xpath-finder",
    "version": "1.0.2",
    "icons": {
        "64": "icons\/default-64.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/default-64.png",
        "default_title": "Click on any element to get the xPath"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "inspect.js"
            ]
        }
    ],
    "commands": {
        "toggle-xpath": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            },
            "description": "Toggle plugin"
        }
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "activeTab",
        "",
        "storage"
    ]
}