openrpa
Support extension for OpenRPA
什麼是openrpa?
openrpa是由https://openiap.io開發的Chrome擴展程式,該擴展的主要功能是“Support extension for OpenRPA”。
擴展截圖
下載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 |
ID | hpnihnhlcnfejboocnckgchjdofeaphe |
官方網址 | 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]" } } } |