generate Xpath

Generate unique Xpath for a DOM element

generate Xpathとは何ですか?

generate Xpathはsudharma.puranikによって開発されたChromeの拡張機能で、その主な機能は「Generate unique Xpath for a DOM element」です。

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

screenshot

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

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

拡張機能の使用方法

                        The main purpose of this extension is to generate a unique  Xpath-for a given HTML DOM Element. It may so happen that that if the element has no attributes, it tries to create shortcut with respect to text. This needs lot of improvement and this is my first experiment with chrome extensions hence kindly excuse for some trivial mistakes. 

Let me know if anything is not relevant or which may be missing.

Below are the few known issues which would be fixed soon.

1. have to fallback on the traditional xpath if no optimized xpath found.                    

拡張機能の基本情報

名前 generate Xpath generate Xpath
ID nonoedhghnjmnhnceofpkppdicphhfhf
公式URL https://chromewebstore.google.com/detail/generate-xpath/nonoedhghnjmnhnceofpkppdicphhfhf
説明 Generate unique Xpath for a DOM element
ファイルサイズ 90.01 KB
インストール数 63
現在のバージョン 1.0
最終更新日 2013-12-24
公開日 2013-12-24
評価 1.00/5 合計 1 レビュー
開発者 sudharma.puranik
支払い方法 free
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "generate Xpath",
    "description": "Generate unique Xpath for a DOM element",
    "version": "1.0",
    "permissions": [
        "activeTab",
        "contextMenus",
        "notifications"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "elementLocator.js",
                "content_script.js"
            ],
            "css": [
                "core.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery-2.0.3.min.map"
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "19": "xpath.png"
        },
        "default_title": "xpath generator"
    }
}