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」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

TagUI RPA Web Recorder拡張機能のCRXファイルをダウンロード

TagUI RPA Web Recorder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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 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
Eメール [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'"
    }
}