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) 擴展基本資訊
| 名稱 | |
| ID | bdjdmomgblhhmhbpobcklhacnhoindin |
| 官方網址 | 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"
}
} | |