openrpa
Support extension for OpenRPA
ما هو openrpa؟
openrpa هو إضافة Chrome تم تطويرها بواسطة https://openiap.io، والميزة الرئيسية لها هي "Support extension for OpenRPA".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة openrpa
قم بتنزيل ملفات الامتداد openrpa بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان 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 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://openiap.io |
عنوان صفحة المساعدة | 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]" } } } |