xPath Finder

Click on any element to get the xPath

Was ist xPath Finder?

xPath Finder ist eine Chrome-Erweiterung, die von Tomasz Rembacz entwickelt wurde, und ihr Hauptmerkmal ist "Click on any element to get the xPath".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

xPath Finder-Erweiterungs-CRX-Datei herunterladen

Laden Sie xPath Finder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name xPath Finder xPath Finder
ID ihnknokegkbpmofmafnkoadfjkhlogph
Offizielle URL https://chromewebstore.google.com/detail/xpath-finder/ihnknokegkbpmofmafnkoadfjkhlogph
Beschreibung Click on any element to get the xPath
Dateigröße 15.28 KB
Installationsanzahl 73,533
Aktuelle Version 1.0.2
Letztes Update 2020-06-12
Veröffentlichungsdatum 2020-06-12
Bewertung 3.32/5 Insgesamt 34 Bewertungen
Entwickler Tomasz Rembacz
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}