generate Xpath

Generate unique Xpath for a DOM element

Что такое generate Xpath?

generate Xpath - это расширение Chrome, разработанное sudharma.puranik, и его основная функция - "Generate unique Xpath for a DOM element".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения generate Xpath

Скачайте файлы расширений 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"
    }
}