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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'" } } |