Tealium Event Tracker

Check tracking events payload and prints it to the console!

What is Tealium Event Tracker?

Tealium Event Tracker is a Chrome extension developed by rpcm, and its main feature is "Check tracking events payload and prints it to the console!".

Extension Screenshots

screenshot
screenshot

Download Tealium Event Tracker Extension CRX File

Download Tealium 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

                        Extends and enhances the tracking functions to intercept the events payload and print them to the console.                    

Extension Basic Information

Name Tealium Event Tracker Tealium Event Tracker
ID nbkmegijepdgaibmjgkbkckmcabkabhc
Official URL https://chromewebstore.google.com/detail/tealium-event-tracker/nbkmegijepdgaibmjgkbkckmcabkabhc
Description Check tracking events payload and prints it to the console!
File Size 140 KB
Installation Count 339
Current Version 0.0.0.6
Last Updated 2023-07-10
Publish Date 2021-10-05
Rating 5.00/5 Total 1 Ratings
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 Event Tracker",
    "manifest_version": 2,
    "version": "0.0.0.6",
    "description": "Check tracking events payload and prints it 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 Event Tracker"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "webRequest",
        ""
    ]
}