TagUI RPA Web Recorder
Create TagUI automation flows by recording your actions
什么是TagUI RPA Web Recorder?
TagUI RPA Web Recorder是由AI Singapore开发的Chrome扩展程序,该扩展的主要功能是“Create TagUI automation flows by recording your actions”。
扩展截图
下载TagUI RPA Web Recorder扩展crx文件
下载TagUI RPA Web Recorder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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'" } } |