openrpa

Support extension for OpenRPA

openrpa là gì?

openrpa là một tiện ích mở rộng Chrome được phát triển bởi https://openiap.io, và tính năng chính của nó là "Support extension for OpenRPA".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng openrpa

Tải xuống các tệp mở rộng openrpa dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên openrpa openrpa
ID hpnihnhlcnfejboocnckgchjdofeaphe
URL Chính Thức https://chromewebstore.google.com/detail/openrpa/hpnihnhlcnfejboocnckgchjdofeaphe
Mô tả Support extension for OpenRPA
Kích Thước Tệp 451 KB
Số Lần Cài Đặt 5,385
Phiên Bản Hiện Tại 1.0.0.5
Cập Nhật Lần Cuối 2022-11-28
Ngày Phát Hành 2020-04-26
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://openiap.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://openiap.io
URL Trang Trợ Giúp https://github.com/open-rpa/openrpa/wiki
Ngôn Ngữ Được Hỗ Trợ 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]"
        }
    }
}