openrpa

Support extension for OpenRPA

什么是openrpa?

openrpa是由https://openiap.io开发的Chrome扩展程序,该扩展的主要功能是“Support extension for OpenRPA”。

扩展截图

screenshot

下载openrpa扩展crx文件

下载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]"
        }
    }
}