TagUI RPA Web Recorder
Create TagUI automation flows by recording your actions
ما هو TagUI RPA Web Recorder؟
TagUI RPA Web Recorder هو إضافة Chrome تم تطويرها بواسطة AI Singapore، والميزة الرئيسية لها هي "Create TagUI automation flows by recording your actions".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة TagUI RPA Web Recorder
قم بتنزيل ملفات الامتداد TagUI RPA Web Recorder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension records your actions in chrome and generates a TagUI script for RPA automation. For more information on TagUI, check out https://github.com/kelaberetiv/TagUI
معلومات أساسية عن التمديد
الاسم | TagUI RPA Web Recorder |
ID | gjdajlcpkkjgjjokkekiniengajiamnk |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tagui-rpa-web-recorder/gjdajlcpkkjgjjokkekiniengajiamnk |
الوصف | Create TagUI automation flows by recording your actions |
حجم الملف | 35.69 KB |
عدد التثبيتات | 944 |
النسخة الحالية | 5.12.0 |
آخر تحديث | 2022-07-10 |
تاريخ النشر | 2022-07-10 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | AI Singapore |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TagUI RPA Web Recorder", "short_name": "TagUI RPA", "version": "5.12.0", "description": "Create TagUI automation flows by recording your actions", "homepage_url": "https:\/\/github.com\/kelaberetiv\/TagUI", "action": { "default_title": "TagUI RPA Web Recorder", "default_popup": "control.html", "default_icon": { "16": "tagui_icon_16.png" } }, "icons": { "16": "tagui_icon_16.png", "48": "tagui_icon_48.png", "128": "tagui_icon_128.png" }, "permissions": [ "tabs", "background" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "recorder.js" ] } ], "offline_enabled": false, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |