Request Metrics Agent

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

Cos'è Request Metrics Agent?

Request Metrics Agent è un'estensione di Chrome sviluppata da https://requestmetrics.com, e la sua funzione principale è "Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Request Metrics Agent

Scarica i file di estensione Request Metrics Agent in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Request Metrics Agent Request Metrics Agent
ID hldblpjckolplbppajmafldmmkabeaab
URL Ufficiale https://chromewebstore.google.com/detail/request-metrics-agent/hldblpjckolplbppajmafldmmkabeaab
Descrizione Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.
Dimensione del File 1.1 MB
Conteggio Installazioni 92
Versione Corrente 1.1.2
Ultimo Aggiornamento 2023-12-10
Data di Pubblicazione 2022-02-23
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://requestmetrics.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://requestmetrics.com/
URL della Pagina di Aiuto https://requestmetrics.com/guide/
URL della Pagina della Politica sulla Privacy https://requestmetrics.com/privacy
Lingue Supportate 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"
        }
    }
}