Tealium iGIF Event Tracker

Prints the Tealium CDH event payload to the console!

What is Tealium iGIF Event Tracker?

Tealium iGIF Event Tracker is a Chrome extension developed by rpcm, and its main feature is "Prints the Tealium CDH event payload to the console!".

Extension Screenshots

screenshot
screenshot
screenshot

Download Tealium iGIF Event Tracker Extension CRX File

Download Tealium iGIF Event Tracker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Checks the network calls for the Tealium collect pixels and other Tealium API endpoints.
When these calls are found, it gets the querystring parameters when its a GET call or the body data when its a POST call and prints the data to the console.
Easy way to track all calls done to Tealium CDH                    

Extension Basic Information

Name Tealium iGIF Event Tracker Tealium iGIF Event Tracker
ID mmalcnbnaenfnpnjjikflkapjjjkking
Official URL https://chromewebstore.google.com/detail/tealium-igif-event-tracke/mmalcnbnaenfnpnjjikflkapjjjkking
Description Prints the Tealium CDH event payload to the console!
File Size 449 KB
Installation Count 229
Current Version 0.0.0.8
Last Updated 2023-01-25
Publish Date 2021-10-05
Developer rpcm
Email [email protected]
Payment Type free
Supported Languages en-GB
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": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "webRequest",
        ""
    ],
    "devtools_page": "devtools.html"
}