Dynatrace Real User Monitoring

Dynatrace Real User Monitoring

This extension allows you to monitor (SaaS) applications where installation of Dynatrace OneAgent is not possible.

Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "version": "1.6.2",
  "author": "Dynatrace",
  "description": "__MSG_appDesc__",
  "default_locale": "en_US",
  "browser_action": {
    "default_icon": {
      "30": "css/icon-gray-32.png"
    }
  },
  "options_page": "options/options.html",
  "icons": {
    "30": "css/icon-32.png",
    "128": "css/icon-128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "shared/constants.js",
        "content_scripts/override.js",
        "content_scripts/installation.js",
        "content_scripts/utils.js",
        "content_scripts/injection.js",
        "content_scripts/mutationobserver.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2,
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "shared/constants.js",
      "globalconfig-init-edge.js",
      "background/utils.js",
      "background/csp.js",
      "background/globalconfig.js",
      "background/visitor.js",
      "background/background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' https://js-cdn.dynatracelabs.com; object-src 'self'",
  "storage": {
    "managed_schema": "globalconfig_schema.json"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}