openrpa
Support extension for OpenRPA
Qu'est-ce que openrpa ?
openrpa est une extension Chrome développée par https://openiap.io, et sa fonction principale est "Support extension for OpenRPA".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension openrpa
Téléchargez les fichiers d'extension openrpa au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | openrpa |
ID | hpnihnhlcnfejboocnckgchjdofeaphe |
URL Officiel | https://chromewebstore.google.com/detail/openrpa/hpnihnhlcnfejboocnckgchjdofeaphe |
Description | Support extension for OpenRPA |
Taille du Fichier | 451 KB |
Nombre d'Installations | 5,385 |
Version Actuelle | 1.0.0.5 |
Dernière Mise à Jour | 2022-11-28 |
Date de Publication | 2020-04-26 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | https://openiap.io |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://openiap.io |
URL de la Page d'Aide | https://github.com/open-rpa/openrpa/wiki |
Langues Prises en Charge | 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]" } } } |