Datadog RUM extension

Real User Monitoring

Datadog RUM extension क्या है?

Datadog RUM extension jack.wang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Real User Monitoring"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Datadog RUM extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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)                    

एक्सटेंशन की मूल जानकारी

नाम Datadog RUM extension Datadog RUM extension
ID bdjdmomgblhhmhbpobcklhacnhoindin
आधिकारिक URL https://chromewebstore.google.com/detail/datadog-rum-extension/bdjdmomgblhhmhbpobcklhacnhoindin
विवरण Real User Monitoring
फ़ाइल का आकार 71.45 KB
स्थापना संख्या 282
वर्तमान संस्करण 1.5
अंतिम अपडेट 2022-02-03
प्रकाशन तिथि 2022-01-14
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर jack.wang
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://docs.datadoghq.com/real_user_monitoring/
सहायता पृष्ठ URL https://docs.datadoghq.com/real_user_monitoring/
समर्थित भाषाएँ 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"
    }
}