xpath creator

create dynamic xpaths on the go.Check the browser console for xpaths

什么是xpath creator?

xpath creator是由sunilkumar.ramamurthy开发的Chrome扩展程序,该扩展的主要功能是“create dynamic xpaths on the go.Check the browser console for xpaths”。

扩展截图

screenshot
screenshot

下载xpath creator扩展crx文件

下载xpath creator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This browser extension creates/generates all possible xpaths of any webelement.                    

扩展基本信息

名称 xpath creator xpath creator
ID elfinpbofafmkgjbmkfeboccoohncjam
官方URL https://chromewebstore.google.com/detail/xpath-creator/elfinpbofafmkgjbmkfeboccoohncjam
简介 create dynamic xpaths on the go.Check the browser console for xpaths
文件大小 39.09 KB
安装次数 65
当前版本 1.0
更新时间 2019-09-24
上架时间 2019-09-22
评分 5.00/5 共1次评分
开发者 sunilkumar.ramamurthy
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "xpath creator",
    "version": "1.0",
    "manifest_version": 2,
    "description": "create dynamic xpaths on the go.Check the browser console for xpaths",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "create dynamic xpaths on the go.Check the browser console for xpaths",
        "default_icon": "icon16.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "generatexpath.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}