Request Metrics Agent

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

Vad är Request Metrics Agent?

Request Metrics Agent är en Chrome-tillägg utvecklad av https://requestmetrics.com, och dess huvudfunktion är "Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Request Metrics Agent-förlängningens CRX-fil

Ladda ner Request Metrics Agent-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Request Metrics Agent Request Metrics Agent
ID hldblpjckolplbppajmafldmmkabeaab
Officiell webbadress https://chromewebstore.google.com/detail/request-metrics-agent/hldblpjckolplbppajmafldmmkabeaab
Beskrivning Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.
Filstorlek 1.1 MB
Antal Installationer 92
Aktuell Version 1.1.2
Senast Uppdaterad 2023-12-10
Publiceringsdatum 2022-02-23
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://requestmetrics.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://requestmetrics.com/
Hjälpsida URL https://requestmetrics.com/guide/
URL till Sekretesspolicy Sidan https://requestmetrics.com/privacy
Stödda Språk 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"
        }
    }
}