Request Metrics Agent

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

什么是Request Metrics Agent?

Request Metrics Agent是由https://requestmetrics.com开发的Chrome扩展程序,该扩展的主要功能是“Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.”。

扩展截图

screenshot
screenshot
screenshot

下载Request Metrics Agent扩展crx文件

下载Request Metrics Agent扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Request Metrics Agent Request Metrics Agent
ID hldblpjckolplbppajmafldmmkabeaab
官方URL https://chromewebstore.google.com/detail/request-metrics-agent/hldblpjckolplbppajmafldmmkabeaab
简介 Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.
文件大小 1.1 MB
安装次数 92
当前版本 1.1.2
更新时间 2023-12-10
上架时间 2022-02-23
评分 5.00/5 共1次评分
开发者 https://requestmetrics.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://requestmetrics.com/
帮助页面URL https://requestmetrics.com/guide/
隐私政策页面URL https://requestmetrics.com/privacy
支持的语言 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"
        }
    }
}