TagUI RPA Web Recorder

TagUI RPA Web Recorder

Create TagUI automation flows by recording your actions

Additional files are visible only to premium users

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'"
  }
}