Tagmate Tracker for GA/GA4 Events

Tagmate Tracker for GA/GA4 Events

Tagmate tracker

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Tagmate tracker",
  "version": "4.0.0.8",
  "manifest_version": 3,
  "name": "Tagmate Tracker for GA/GA4 Events",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon-128.png",
        "icon-34.png",
        "**.svg",
        "**.woff",
        "**.woff2",
        "img/converted.webp",
        "img/image.webp",
        "img/tagmateLogo.png",
        "img/landing.png",
        "img/tagmate_product_logo.svg",
        "img/debugger-white-logo.png",
        "img/debugger_illustration.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "scripting",
    "webRequest",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}