Datadog RUM extension
Real User Monitoring
Datadog RUM extensionคืออะไร?
Datadog RUM extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jack.wang และคุณลักษณะหลักของมันคือ "Real User Monitoring"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Datadog RUM extension
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } } |