TagHound - Analytics/GTM/Pixel Debugger

TagHound - Analytics/GTM/Pixel Debugger

Debug Google Tag Manager dataLayer, Google Analytics, Google Ads, Facebook Ads and 18+ ad networks pixels - Twitter, TikTok and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Debug Google Tag Manager dataLayer, Google Analytics, Google Ads, Facebook Ads and 18+ ad networks pixels - Twitter, TikTok and more",
  "version": "1.1.5",
  "manifest_version": 3,
  "name": "TagHound - Analytics/GTM/Pixel Debugger",
  "options_page": "option.html",
  "devtools_page": "devtools.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "32": "icon128.png"
    },
    "default_title": "Analytics/GTM/Pixel Debugger"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "mainWorldContentScript.bundle.js"
      ],
      "run_at": "document_start",
      "world": "MAIN"
    },
    {
      "matches": [
        "https://tagassistant.google.com/"
      ],
      "css": [
        "tagAssistant.css"
      ],
      "js": [
        "tagAssistant.bundle.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "icon128.png",
    "48": "icon128.png",
    "128": "icon128.png"
  },
  "permissions": [
    "webRequest",
    "activeTab",
    "storage",
    "scripting",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "script/*.js",
        "lib/js/*.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "tagAssistantBanner.html"
      ],
      "matches": [
        "*://tagassistant.google.com/*"
      ]
    }
  ]
}