GA4 Fixer

GA4 Fixer

Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GA4 Fixer",
  "version": "2.1.0",
  "description": "Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more.",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "notifications"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/ga4fixer16.png",
      "48": "images/ga4fixer48.png",
      "128": "images/ga4fixer128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.analytics.google.com/*",
        "https://tagmanager.google.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_page": "options.html",
  "icons": {
    "16": "images/ga4fixer16.png",
    "48": "images/ga4fixer48.png",
    "128": "images/ga4fixer128.png"
  }
}