TagUI RPA Web Recorder
Create TagUI automation flows by recording your actions
Vad är TagUI RPA Web Recorder?
TagUI RPA Web Recorder är en Chrome-tillägg utvecklad av AI Singapore, och dess huvudfunktion är "Create TagUI automation flows by recording your actions".
Tilläggsskärmbilder
Ladda ner TagUI RPA Web Recorder-förlängningens CRX-fil
Ladda ner TagUI RPA Web Recorder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | TagUI RPA Web Recorder |
ID | gjdajlcpkkjgjjokkekiniengajiamnk |
Officiell webbadress | https://chromewebstore.google.com/detail/tagui-rpa-web-recorder/gjdajlcpkkjgjjokkekiniengajiamnk |
Beskrivning | Create TagUI automation flows by recording your actions |
Filstorlek | 35.69 KB |
Antal Installationer | 944 |
Aktuell Version | 5.12.0 |
Senast Uppdaterad | 2022-07-10 |
Publiceringsdatum | 2022-07-10 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | AI Singapore |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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'" } } |