TagUI RPA Web Recorder
Create TagUI automation flows by recording your actions
Wat is TagUI RPA Web Recorder?
TagUI RPA Web Recorder is een Chrome-extensie ontwikkeld door AI Singapore, en de belangrijkste functie is "Create TagUI automation flows by recording your actions".
Extensie Screenshots
Download het CRX-bestand van de extensie TagUI RPA Web Recorder
Download TagUI RPA Web Recorder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | TagUI RPA Web Recorder |
ID | gjdajlcpkkjgjjokkekiniengajiamnk |
Officiële URL | https://chromewebstore.google.com/detail/tagui-rpa-web-recorder/gjdajlcpkkjgjjokkekiniengajiamnk |
Beschrijving | Create TagUI automation flows by recording your actions |
Bestandsgrootte | 35.69 KB |
Aantal Installaties | 944 |
Huidige Versie | 5.12.0 |
Laatst Bijgewerkt | 2022-07-10 |
Publicatiedatum | 2022-07-10 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | AI Singapore |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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'" } } |