Datadog RUM extension

Real User Monitoring

What is Datadog RUM extension?

Datadog RUM extension is a Chrome extension developed by jack.wang, and its main feature is "Real User Monitoring".

Extension Screenshots

screenshot

Download Datadog RUM extension Extension CRX File

Download Datadog RUM extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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)                    

Extension Basic Information

Name Datadog RUM extension Datadog RUM extension
ID bdjdmomgblhhmhbpobcklhacnhoindin
Official URL https://chromewebstore.google.com/detail/datadog-rum-extension/bdjdmomgblhhmhbpobcklhacnhoindin
Description Real User Monitoring
File Size 71.45 KB
Installation Count 282
Current Version 1.5
Last Updated 2022-02-03
Publish Date 2022-01-14
Rating 5.00/5 Total 2 Ratings
Developer jack.wang
Email [email protected]
Payment Type free
Extension Website https://docs.datadoghq.com/real_user_monitoring/
Help Page URL https://docs.datadoghq.com/real_user_monitoring/
Supported Languages 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"
    }
}