ThousandEyes Endpoint Agent

ThousandEyes Endpoint Agent

Help troubleshoot performance problems with web sites you visit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "ThousandEyes Endpoint Agent",
  "version": "1.189.0",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "description": "Help troubleshoot performance problems with web sites you visit.",
  "homepage_url": "https://www.thousandeyes.com/product/endpoint-agents/end-user-faq",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "service-worker.bundle.js",
    "type": "module"
  },
  "action": {
    "default_icon": "images/icon32.png",
    "default_popup": "popup.html",
    "default_title": "Start Recording"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.thousandeyes.com/install/endpoint-agent*"
      ],
      "js": [
        "webapps-install-page-listener.bundle.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "all-frames-content-scripts.bundle.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "main-frame-only-content-scripts.bundle.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "nativeMessaging",
    "geolocation",
    "activeTab",
    "webRequest",
    "webNavigation"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}