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
Eメール [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"
        ]
    }
}