Dynatrace Real User Monitoring

This extension allows you to monitor (SaaS) applications where installation of Dynatrace OneAgent is not possible.

Dynatrace Real User Monitoring란 무엇입니까?

Dynatrace Real User Monitoring은(는) https://dynatrace.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to monitor (SaaS) applications where installation of Dynatrace OneAgent is not possible."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Dynatrace Real User Monitoring 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Injects a JavaScript tag into applications defined via Dynatrace to gather real user monitoring data.
For Session Replay, it enhances session playback especially when:
 * Font and stylesheet resources are loaded from HTTPS origins
 * Resources are loaded from HTTP origins

Once installed, you'll be prompted to grant permission for the download of page resources for each page that's included in session recording.

For additional information see https://www.dynatrace.com/support/help/shortlink/rum-browser-extension                    

확장 프로그램 기본 정보

이름 Dynatrace Real User Monitoring Dynatrace Real User Monitoring
ID fklgmciohehgadlafhljjhgdojfjihhk
공식 URL https://chromewebstore.google.com/detail/dynatrace-real-user-monit/fklgmciohehgadlafhljjhgdojfjihhk
설명 This extension allows you to monitor (SaaS) applications where installation of Dynatrace OneAgent is not possible.
파일 크기 145 KB
설치 횟수 675,242
현재 버전 1.6.2
최근 업데이트 2023-02-10
출시 날짜 2020-03-24
평점 5.00/5 총 9 개의 평점
개발자 https://dynatrace.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.dynatrace.com
도움말 페이지 URL https://www.dynatrace.com/support/help/shortlink/rum-browser-extension
개인정보 보호 정책 페이지 URL https://www.dynatrace.com/company/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "saasrum",
    "version": "1.6.2",
    "description": "__MSG_appDesc__",
    "default_locale": "en_US",
    "browser_action": {
        "default_icon": "css\/icon-gray-32.png"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "icons": {
        "128": "css\/icon-128.png",
        "32": "css\/icon-32.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [],
            "js": [
                "shared\/constants.js",
                "content_scripts\/override.js",
                "content_scripts\/installation.js",
                "content_scripts\/utils.js",
                "content_scripts\/injection.js",
                "content_scripts\/mutationobserver.js",
                "content_scripts\/proxy.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 2,
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "optional_permissions": [
        "notifications"
    ],
    "background": {
        "scripts": [
            "shared\/constants.js",
            "globalconfig-init-chrome.js",
            "background\/migrations.js",
            "background\/utils.js",
            "background\/csp.js",
            "background\/globalconfig.js",
            "background\/visitor.js",
            "background\/background.js",
            "background\/session-replay\/utils.js",
            "background\/session-replay\/storage.js",
            "background\/session-replay\/permissions.js",
            "background\/session-replay\/notifications.js",
            "background\/session-replay\/proxy.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/js-cdn.dynatracelabs.com; object-src 'self'",
    "storage": {
        "managed_schema": "globalconfig_schema.json"
    }
}