RapiseChromeExtension

This extension allows the Rapise test automation platform to test web applications running in the Google Chrome browser.

Что такое RapiseChromeExtension?

RapiseChromeExtension - это расширение Chrome, разработанное https://www.inflectra.com, и его основная функция - "This extension allows the Rapise test automation platform to test web applications running in the Google Chrome browser.".

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

screenshot
screenshot

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

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

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

                        This extension allows the Rapise test automation system to record, learn and playback automated tests using the Google Chrome browser.                    

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

Название RapiseChromeExtension RapiseChromeExtension
ID ibngcigigdlhaekbaknfbpcbgilmhahc
Официальный URL https://chromewebstore.google.com/detail/rapisechromeextension/ibngcigigdlhaekbaknfbpcbgilmhahc
Описание This extension allows the Rapise test automation platform to test web applications running in the Google Chrome browser.
Размер файла 18.32 KB
Количество установок 1,179
Текущая Версия 3.0.11
Последнее Обновление 2022-06-23
Дата публикации 2019-07-25
Рейтинг 4.33/5 Всего 3 оценок
Разработчик https://www.inflectra.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.inflectra.com/Rapise
URL страницы помощи https://www.inflectra.com/Rapise/FAQs.aspx
URL страницы политики конфиденциальности http://www.inflectra.com/Company/Privacy-Policy.aspx
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RapiseChromeExtension",
    "short_name": "Rapise Test Suite Support for Chrome.",
    "description": "This extension allows the Rapise test automation platform to test web applications running in the Google Chrome browser.",
    "version": "3.0.11",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "nativeMessaging",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icons\/16.png",
        "24": "icons\/24.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "injectedJS.js"
            ],
            "match_about_blank": true
        }
    ]
}