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 |
| 官方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"
}
} | |