AutomaticXpathGenerator

This will generate xpaths for elements on the webpage

Что такое AutomaticXpathGenerator?

AutomaticXpathGenerator - это расширение Chrome, разработанное Aamir Mohammed Suhail, и его основная функция - "This will generate xpaths for elements on the webpage".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Скачайте файлы расширений AutomaticXpathGenerator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension is used to generate the xpaths automatically for the web page. It will generate the xpaths for each and every element on the web page and displays it next to the corresponding web elements. User has to just click the xpath to copy and use it in automation script. Also for anyone who doesn't know how to write the xpaths, this extension will be very useful.                    

Основная информация о расширении

Название AutomaticXpathGenerator AutomaticXpathGenerator
ID amcbnabgjffdhibpmgcnpnmjpfjliikh
Официальный URL https://chromewebstore.google.com/detail/automaticxpathgenerator/amcbnabgjffdhibpmgcnpnmjpfjliikh
Описание This will generate xpaths for elements on the webpage
Размер файла 21.71 KB
Количество установок 657
Текущая Версия 1.2
Последнее Обновление 2021-06-21
Дата публикации 2021-06-16
Рейтинг 2.33/5 Всего 6 оценок
Разработчик Aamir Mohammed Suhail
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AutomaticXpathGenerator",
    "version": "1.2",
    "description": "This will generate xpaths for elements on the webpage",
    "icons": {
        "128": ".\/icons\/128_g.png",
        "48": ".\/icons\/48_g.png",
        "32": ".\/icons\/32_g.png",
        "16": ".\/icons\/16_g.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "demo.html",
        "default_icon": ".\/icons\/128_g.png"
    }
}