Analytics Percentage Highlighter

Analytics Percentage Highlighter

This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Analytics Percentage Highlighter",
  "description": "This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.",
  "version": "1.1",
  "icons": {
    "16": "icons/icon.png",
    "32": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://analytics.google.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "action": {
    "default_title": "Show settings",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ]
}