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
官方網址 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
電子郵箱 [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"
    ]
}