openrpa
Support extension for OpenRPA
Cos'è openrpa?
openrpa è un'estensione di Chrome sviluppata da https://openiap.io, e la sua funzione principale è "Support extension for OpenRPA".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione openrpa
Scarica i file di estensione openrpa in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | openrpa |
ID | hpnihnhlcnfejboocnckgchjdofeaphe |
URL Ufficiale | https://chromewebstore.google.com/detail/openrpa/hpnihnhlcnfejboocnckgchjdofeaphe |
Descrizione | Support extension for OpenRPA |
Dimensione del File | 451 KB |
Conteggio Installazioni | 5,385 |
Versione Corrente | 1.0.0.5 |
Ultimo Aggiornamento | 2022-11-28 |
Data di Pubblicazione | 2020-04-26 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | https://openiap.io |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://openiap.io |
URL della Pagina di Aiuto | https://github.com/open-rpa/openrpa/wiki |
Lingue Supportate | 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]" } } } |