Google Analytics 4 - Event Monitor

Google Analytics 4 - Event Monitor

Monitor all google analytics 4 events with one of the easiest and intuitive user interface. Experience real-time event monitoring…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Analytics 4 - Event Monitor",
  "short_name": "GA4-Event Monitor",
  "description": "",
  "version": "1.0.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "serviceWorker.js",
    "type": "module"
  },
  "action": {
    "default_title": "GA4-Event Monitor",
    "default_icon": {
      "16": "assets/logos/GA4-EventMonitor-Icon-256.png",
      "24": "assets/logos/GA4-EventMonitor-Icon-256.png",
      "32": "assets/logos/GA4-EventMonitor-Icon-256.png"
    }
  },
  "icons": {
    "16": "assets/logos/GA4-EventMonitor-Icon-256.png",
    "48": "assets/logos/GA4-EventMonitor-Icon-256.png",
    "128": "assets/logos/GA4-EventMonitor-Icon-256.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "scripting",
    "activeTab",
    "webRequest"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "optional_host_permissions": [],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/logos/*"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "assets/files/*"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "assets/images/*"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "assets/css/*.css"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "contentScript.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}