Tealium iGIF Event Tracker

Prints the Tealium CDH event payload to the console!

Что такое Tealium iGIF Event Tracker?

Tealium iGIF Event Tracker - это расширение Chrome, разработанное rpcm, и его основная функция - "Prints the Tealium CDH event payload to the console!".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Tealium iGIF Event Tracker

Скачайте файлы расширений 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
Электронная почта [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"
}