Datadog RUM extension

Real User Monitoring

Cos'è Datadog RUM extension?

Datadog RUM extension è un'estensione di Chrome sviluppata da jack.wang, e la sua funzione principale è "Real User Monitoring".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Datadog RUM extension

Scarica i file di estensione Datadog RUM extension 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 chrome extension helps users to inject Datadog RUM javascript seamlessly into any chosen website on their browser.
There are only 3 steps:
Users fill in several basic pieces of key info in the extension options
Visit the site
Check the RUM results in the Datadog web console! (after several seconds)
Option Details:
- Client data will only be sent to Datadog when the site url matches the regex configured in "Match".
- "Application ID" and "Client Token" can be retrieved from your Datadog RUM page https://app.datadoghq.com/rum/application/ (edited)                    

Informazioni di Base sull'Estensione

Nome Datadog RUM extension Datadog RUM extension
ID bdjdmomgblhhmhbpobcklhacnhoindin
URL Ufficiale https://chromewebstore.google.com/detail/datadog-rum-extension/bdjdmomgblhhmhbpobcklhacnhoindin
Descrizione Real User Monitoring
Dimensione del File 71.45 KB
Conteggio Installazioni 282
Versione Corrente 1.5
Ultimo Aggiornamento 2022-02-03
Data di Pubblicazione 2022-01-14
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore jack.wang
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://docs.datadoghq.com/real_user_monitoring/
URL della Pagina di Aiuto https://docs.datadoghq.com/real_user_monitoring/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Datadog RUM extension",
    "version": "1.5",
    "manifest_version": 3,
    "description": "Real User Monitoring",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "64": "rum_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "empty.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": {
        "default_icon": "rum_icon.png",
        "default_title": "This is a Datadog rum extension",
        "default_popup": "popup.html"
    }
}