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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://requestmetrics.com, και η κύρια λειτουργία του είναι "Monitors your Core Web Vitals and other performance and events on websites you visit and send them to Request Metrics.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Request Metrics Agent

Λήψη αρχείων επέκτασης 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"
        }
    }
}