xPath Finder

Click on any element to get the xPath

xPath Finderとは何ですか?

xPath FinderはTomasz Rembaczによって開発されたChromeの拡張機能で、その主な機能は「Click on any element to get the xPath」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

xPath Finder拡張機能のCRXファイルをダウンロード

xPath Finder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 xPath Finder xPath Finder
ID ihnknokegkbpmofmafnkoadfjkhlogph
公式URL https://chromewebstore.google.com/detail/xpath-finder/ihnknokegkbpmofmafnkoadfjkhlogph
説明 Click on any element to get the xPath
ファイルサイズ 15.28 KB
インストール数 73,533
現在のバージョン 1.0.2
最終更新日 2020-06-12
公開日 2020-06-12
評価 3.32/5 合計 34 レビュー
開発者 Tomasz Rembacz
Eメール [email protected]
支払い方法 free
対応言語 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"
    ]
}