GA4 Enhanced DebugView by Luratic

GA4 Enhanced DebugView by Luratic

Prints on console all the params and their values when clicking over an event logged into the GA4/Firebase DebugView/Usersnapshot.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GA4 Enhanced DebugView by Luratic",
  "description": "Prints on console all the params and their values when clicking over an event logged into the GA4/Firebase DebugView/Usersnapshot.",
  "version": "0.31",
  "manifest_version": 3,
  "icons": {
    "16": "/images/luratic16.png",
    "32": "/images/luratic32.png",
    "48": "/images/luratic48.png",
    "128": "/images/luratic128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "script.js"
      ],
      "matches": [
        "https://analytics.google.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "matches": [
      "https://analytics.google.com/*"
    ]
  },
  "action": {
    "default_icon": {
      "16": "/images/luratic16.png",
      "32": "/images/luratic32.png",
      "48": "/images/luratic48.png",
      "128": "/images/luratic128.png"
    }
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "tabs",
    "webNavigation"
  ],
  "host_permissions": [
    "https://analytics.google.com/*",
    "https://console.firebase.google.com/*"
  ]
}