Relative XPath Helper

Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!

Relative XPath Helperとは何ですか?

Relative XPath Helperはsyam sasiによって開発されたChromeの拡張機能で、その主な機能は「Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!」です。

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

screenshot

Relative XPath Helper拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        A simple extension for finding out relative xpath expression of two web elements.
Just right click on the elements you want to compare, or type in your expression and press enter.                    

拡張機能の基本情報

名前 Relative XPath Helper Relative XPath Helper
ID eanaofphbanknlngejejepmfomkjaiic
公式URL https://chromewebstore.google.com/detail/relative-xpath-helper/eanaofphbanknlngejejepmfomkjaiic
説明 Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!
ファイルサイズ 350 KB
インストール数 15,132
現在のバージョン 1.2.7
最終更新日 2021-03-08
公開日 2017-01-05
評価 3.70/5 合計 50 レビュー
開発者 syam sasi
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.linkedin.com/pulse/finding-relative-xpath-made-easy-syam-sasi
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Relative XPath Helper",
    "version": "1.2.7",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "description": "Woohoo, just right click on the first and second element to get the relative xpath. Have Fun!!",
    "background": {
        "page": "relxpathbackground.html"
    },
    "browser_action": {
        "default_icon": {
            "19": "static\/icon_19x19.png",
            "38": "static\/icon_38x38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "relxpathcontent.css"
            ],
            "js": [
                "relxpathcontent.js"
            ]
        }
    ],
    "icons": {
        "16": "static\/icon_16x16.png",
        "32": "static\/icon_32x32.png",
        "48": "static\/icon_48x48.png",
        "128": "static\/icon_128x128.png"
    },
    "web_accessible_resources": [
        "relxpathpopup.css",
        "relxpathpopup.html",
        "relxpathpopup.js"
    ]
}