Tealium iGIF Event Tracker

Prints the Tealium CDH event payload to the console!

Was ist Tealium iGIF Event Tracker?

Tealium iGIF Event Tracker ist eine Chrome-Erweiterung, die von rpcm entwickelt wurde, und ihr Hauptmerkmal ist "Prints the Tealium CDH event payload to the console!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Tealium iGIF Event Tracker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tealium iGIF Event Tracker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Tealium iGIF Event Tracker Tealium iGIF Event Tracker
ID mmalcnbnaenfnpnjjikflkapjjjkking
Offizielle URL https://chromewebstore.google.com/detail/tealium-igif-event-tracke/mmalcnbnaenfnpnjjikflkapjjjkking
Beschreibung Prints the Tealium CDH event payload to the console!
Dateigröße 449 KB
Installationsanzahl 229
Aktuelle Version 0.0.0.8
Letztes Update 2023-01-25
Veröffentlichungsdatum 2021-10-05
Entwickler rpcm
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
}