Request Metrics Agent

Request Metrics Agent

Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Request Metrics Agent",
  "description": "Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.",
  "version": "1.1.2",
  "manifest_version": 3,
  "icons": {
    "16": "/assets/favicon-16x16.png",
    "32": "/assets/favicon-32x32.png",
    "48": "/assets/favicon-48x48.png",
    "128": "/assets/favicon-128x128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/agent/*",
        "/assets/*"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/assets/favicon-16x16.png",
      "32": "/assets/favicon-32x32.png",
      "48": "/assets/favicon-48x48.png",
      "128": "/assets/favicon-128x128.png"
    }
  }
}