Tealium iGIF Event Tracker

Tealium iGIF Event Tracker

Prints the Tealium CDH event payload to the console!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tealium iGIF Event Tracker",
  "manifest_version": 2,
  "version": "0.0.0.8",
  "description": "Prints the Tealium CDH event payload to the console!",
  "icons": {
    "32": "i32.png",
    "128": "i128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Tealium iGIF Event Tracker"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "webRequest",
    "<all_urls>"
  ],
  "devtools_page": "devtools.html"
}