Datadog RUM extension
Real User Monitoring
Hvad er Datadog RUM extension?
Datadog RUM extension er en Chrome-udvidelse udviklet af jack.wang, og dens hovedfunktion er "Real User Monitoring".
Udvidelsesskærmbilleder
Download Datadog RUM extension-udvidelses-CRX-fil
Download Datadog RUM extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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) Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | bdjdmomgblhhmhbpobcklhacnhoindin |
| Officiel URL | https://chromewebstore.google.com/detail/datadog-rum-extension/bdjdmomgblhhmhbpobcklhacnhoindin |
| Beskrivelse | Real User Monitoring |
| Filstørrelse | 71.45 KB |
| Antal Installationer | 282 |
| Nuværende Version | 1.5 |
| Senest Opdateret | 2022-02-03 |
| Udgivelsesdato | 2022-01-14 |
| Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
| Udvikler | jack.wang |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://docs.datadoghq.com/real_user_monitoring/ |
| Hjælpeside-URL | https://docs.datadoghq.com/real_user_monitoring/ |
| Understøttede Sprog | 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"
}
} | |