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
Eメール [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]"
        }
    }
}