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 |
官方網址 | 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'" } } |