openrpa

Support extension for OpenRPA

Что такое openrpa?

openrpa - это расширение Chrome, разработанное https://openiap.io, и его основная функция - "Support extension for OpenRPA".

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

screenshot

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

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

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

                        OpenRPA is the first completely free, open source, enterprise grade Robotic Process Automation platform.
This plugin is needed in order to automate chrome with OpenRPA, the addon does nothing without a running instance of OpenRPA running at the same time.
The addon needs very broad permissions in order to record and replay sequences.
This addon does not collect and send any information, you can how ever collect information from webpages using the OpenRPA software.
For more info and free download visit out site, or forge us on github and help contribute.                    

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

Название openrpa openrpa
ID hpnihnhlcnfejboocnckgchjdofeaphe
Официальный URL https://chromewebstore.google.com/detail/openrpa/hpnihnhlcnfejboocnckgchjdofeaphe
Описание Support extension for OpenRPA
Размер файла 451 KB
Количество установок 5,385
Текущая Версия 1.0.0.5
Последнее Обновление 2022-11-28
Дата публикации 2020-04-26
Рейтинг 5.00/5 Всего 3 оценок
Разработчик https://openiap.io
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://openiap.io
URL страницы помощи https://github.com/open-rpa/openrpa/wiki
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "openrpa",
    "version": "1.0.0.5",
    "description": "Support extension for OpenRPA",
    "permissions": [
        "nativeMessaging",
        "webNavigation",
        "downloads",
        "debugger",
        "scripting",
        "activeTab",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "icons": {
        "16": "images\/OpenRPA16.png",
        "48": "images\/OpenRPA48.png",
        "128": "images\/OpenRPA128.png"
    },
    "action": [],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}