Datadog RUM extension
Real User Monitoring
Wat is Datadog RUM extension?
Datadog RUM extension is een Chrome-extensie ontwikkeld door jack.wang, en de belangrijkste functie is "Real User Monitoring".
Extensie Screenshots
Download het CRX-bestand van de extensie Datadog RUM extension
Download Datadog RUM extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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)
Basisinformatie over de Extensie
Naam | Datadog RUM extension |
ID | bdjdmomgblhhmhbpobcklhacnhoindin |
Officiële URL | https://chromewebstore.google.com/detail/datadog-rum-extension/bdjdmomgblhhmhbpobcklhacnhoindin |
Beschrijving | Real User Monitoring |
Bestandsgrootte | 71.45 KB |
Aantal Installaties | 282 |
Huidige Versie | 1.5 |
Laatst Bijgewerkt | 2022-02-03 |
Publicatiedatum | 2022-01-14 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | jack.wang |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://docs.datadoghq.com/real_user_monitoring/ |
Help Pagina-URL | https://docs.datadoghq.com/real_user_monitoring/ |
Ondersteunde Talen | 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" } } |