wolkvox rpa web Inspector

wolkvox rpa web Inspector

Extension of the wolkvox rpa, the wolkvox rpa Inspector is a powerful and versatile tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "wolkvox rpa web Inspector",
  "description": "Extension of the wolkvox rpa, the wolkvox rpa Inspector is a powerful and versatile tool",
  "version": "1.0.0.0",
  "manifest_version": 3,
  "permissions": [
    "nativeMessaging",
    "scripting",
    "tabs",
    "storage"
  ],
  "action": {
    "default_icon": {
      "16": "icono.png",
      "24": "icono.png",
      "32": "icono.png"
    },
    "default_title": "Inspect window"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.wolkvox.com/*",
      "*://rpa.wolkvox.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/inspect.js"
      ]
    }
  ],
  "icons": {
    "16": "icono.png",
    "48": "icono.png",
    "128": "icono.png"
  }
}