Datadog RUM extension

Real User Monitoring

Co to jest Datadog RUM extension?

Datadog RUM extension to rozszerzenie Chrome opracowane przez jack.wang, a jego główną funkcją jest „Real User Monitoring”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Datadog RUM extension

Pobierz pliki rozszerzeń Datadog RUM extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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)                    

Podstawowe informacje o rozszerzeniu

Nazwa Datadog RUM extension Datadog RUM extension
ID bdjdmomgblhhmhbpobcklhacnhoindin
Oficjalny URL https://chromewebstore.google.com/detail/datadog-rum-extension/bdjdmomgblhhmhbpobcklhacnhoindin
Opis Real User Monitoring
Rozmiar pliku 71.45 KB
Liczba instalacji 282
Aktualna Wersja 1.5
Ostatnia Aktualizacja 2022-02-03
Data Publikacji 2022-01-14
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper jack.wang
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://docs.datadoghq.com/real_user_monitoring/
Adres URL Strony Pomocy https://docs.datadoghq.com/real_user_monitoring/
Obsługiwane Języki 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"
    }
}