Tealium iGIF Event Tracker

Prints the Tealium CDH event payload to the console!

什麼是Tealium iGIF Event Tracker?

Tealium iGIF Event Tracker是由rpcm開發的Chrome擴展程式,該擴展的主要功能是“Prints the Tealium CDH event payload to the console!”。

擴展截圖

screenshot
screenshot
screenshot

下載Tealium iGIF Event Tracker擴展crx文件

下載Tealium iGIF Event Tracker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Tealium iGIF Event Tracker Tealium iGIF Event Tracker
ID mmalcnbnaenfnpnjjikflkapjjjkking
官方網址 https://chromewebstore.google.com/detail/tealium-igif-event-tracke/mmalcnbnaenfnpnjjikflkapjjjkking
簡介 Prints the Tealium CDH event payload to the console!
檔案大小 449 KB
安裝次數 229
目前版本 0.0.0.8
更新時間 2023-01-25
上架時間 2021-10-05
開發者 rpcm
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
}