Datadog RUM extension
Real User Monitoring
Datadog RUM extensionとは何ですか?
Datadog RUM extensionはjack.wangによって開発されたChromeの拡張機能で、その主な機能は「Real User Monitoring」です。
拡張機能のスクリーンショット
Datadog RUM extension拡張機能のCRXファイルをダウンロード
Datadog RUM extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" } } |