Tealium iGIF Event Tracker

Prints the Tealium CDH event payload to the console!

Tealium iGIF Event Tracker là gì?

Tealium iGIF Event Tracker là một tiện ích mở rộng Chrome được phát triển bởi rpcm, và tính năng chính của nó là "Prints the Tealium CDH event payload to the console!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tealium iGIF Event Tracker

Tải xuống các tệp mở rộng Tealium iGIF Event Tracker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tealium iGIF Event Tracker Tealium iGIF Event Tracker
ID mmalcnbnaenfnpnjjikflkapjjjkking
URL Chính Thức https://chromewebstore.google.com/detail/tealium-igif-event-tracke/mmalcnbnaenfnpnjjikflkapjjjkking
Mô tả Prints the Tealium CDH event payload to the console!
Kích Thước Tệp 449 KB
Số Lần Cài Đặt 229
Phiên Bản Hiện Tại 0.0.0.8
Cập Nhật Lần Cuối 2023-01-25
Ngày Phát Hành 2021-10-05
Nhà Phát Triển rpcm
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}