TagUI RPA Web Recorder
Create TagUI automation flows by recording your actions
Cos'è TagUI RPA Web Recorder?
TagUI RPA Web Recorder è un'estensione di Chrome sviluppata da AI Singapore, e la sua funzione principale è "Create TagUI automation flows by recording your actions".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TagUI RPA Web Recorder
Scarica i file di estensione TagUI RPA Web Recorder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | gjdajlcpkkjgjjokkekiniengajiamnk |
| URL Ufficiale | https://chromewebstore.google.com/detail/tagui-rpa-web-recorder/gjdajlcpkkjgjjokkekiniengajiamnk |
| Descrizione | Create TagUI automation flows by recording your actions |
| Dimensione del File | 35.69 KB |
| Conteggio Installazioni | 944 |
| Versione Corrente | 5.12.0 |
| Ultimo Aggiornamento | 2022-07-10 |
| Data di Pubblicazione | 2022-07-10 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | AI Singapore |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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'"
}
} | |