UXM - Web Performance Monitor (23q4)

UXM - Web Performance Monitor (23q4)

Installed by your IT Organization via UXM Desktop agent, monitors performance for selected websites, see options for urls monitored.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "UXM - Web Performance Monitor (23q4)",
  "version": "24.1.2",
  "version_name": "24.1.2",
  "description": "Installed by your IT Organization via UXM Desktop agent, monitors performance for selected websites, see options for urls monitored.",
  "manifest_version": 3,
  "icons": {
    "16": "logo/mcg_16.png",
    "48": "logo/mcg_48.png",
    "128": "logo/mcg_128.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "action": {
    "default_title": "UXM - Web Performance Monitor",
    "default_icon": {
      "48": "logo/mcg_48.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content_script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/uxm_web_agent.debug.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "nativeMessaging",
    "storage",
    "webRequest",
    "webNavigation",
    "alarms"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx"
}