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
公式URL 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
Eメール [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"
}