Request Metrics Agent

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

What is Request Metrics Agent?

Request Metrics Agent is a Chrome extension developed by https://requestmetrics.com, and its main feature is "Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Request Metrics Agent Extension CRX File

Download Request Metrics Agent extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension automatically installs the Request Metrics real-user monitoring agent into the websites that you visit and sends your Core Web Vitals, performance metrics, and other event information back to the Request Metrics account of your choosing.

This was built to be a "no-code" option to trial the system, collecting data from your real website without you needing to make any code changes.                    

Extension Basic Information

Name Request Metrics Agent Request Metrics Agent
ID hldblpjckolplbppajmafldmmkabeaab
Official URL https://chromewebstore.google.com/detail/request-metrics-agent/hldblpjckolplbppajmafldmmkabeaab
Description Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.
File Size 1.1 MB
Installation Count 92
Current Version 1.1.2
Last Updated 2023-12-10
Publish Date 2022-02-23
Rating 5.00/5 Total 1 Ratings
Developer https://requestmetrics.com
Email [email protected]
Payment Type free
Extension Website https://requestmetrics.com/
Help Page URL https://requestmetrics.com/guide/
Privacy Policy Page URL https://requestmetrics.com/privacy
Supported Languages en-US
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": [
        ""
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "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"
        }
    }
}