Datadog RUM extension

Real User Monitoring

Datadog RUM extension란 무엇입니까?

Datadog RUM extension은(는) jack.wang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Real User Monitoring"입니다.

확장 프로그램 스크린샷

screenshot

Datadog RUM extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}