Tealium Event Tracker

Check tracking events payload and prints it to the console!

Tealium Event Trackerとは何ですか?

Tealium Event Trackerはrpcmによって開発されたChromeの拡張機能で、その主な機能は「Check tracking events payload and prints it to the console!」です。

拡張機能のスクリーンショット

screenshot
screenshot

Tealium Event Tracker拡張機能のCRXファイルをダウンロード

Tealium Event Tracker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Tealium Event Tracker Tealium Event Tracker
ID nbkmegijepdgaibmjgkbkckmcabkabhc
公式URL https://chromewebstore.google.com/detail/tealium-event-tracker/nbkmegijepdgaibmjgkbkckmcabkabhc
説明 Check tracking events payload and prints it to the console!
ファイルサイズ 140 KB
インストール数 339
現在のバージョン 0.0.0.6
最終更新日 2023-07-10
公開日 2021-10-05
評価 5.00/5 合計 1 レビュー
開発者 rpcm
Eメール [email protected]
支払い方法 free
対応言語 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",
        ""
    ]
}