TagUI RPA Web Recorder

Create TagUI automation flows by recording your actions

O que é TagUI RPA Web Recorder?

TagUI RPA Web Recorder é uma extensão do Chrome desenvolvida por AI Singapore, e sua principal característica é "Create TagUI automation flows by recording your actions".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão TagUI RPA Web Recorder

Baixe arquivos de extensão TagUI RPA Web Recorder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome TagUI RPA Web Recorder TagUI RPA Web Recorder
ID gjdajlcpkkjgjjokkekiniengajiamnk
URL Oficial https://chromewebstore.google.com/detail/tagui-rpa-web-recorder/gjdajlcpkkjgjjokkekiniengajiamnk
Descrição Create TagUI automation flows by recording your actions
Tamanho do Arquivo 35.69 KB
Contagem de Instalações 944
Versão Atual 5.12.0
Última Atualização 2022-07-10
Data de Publicação 2022-07-10
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor AI Singapore
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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'"
    }
}