Taboola Pixel Helper

This extension allows the user to troubleshoot problems when using Taboola Pixels.

Что такое Taboola Pixel Helper?

Taboola Pixel Helper - это расширение Chrome, разработанное Taboola, Inc, и его основная функция - "This extension allows the user to troubleshoot problems when using Taboola Pixels.".

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

screenshot
screenshot

Скачать файл CRX расширения Taboola Pixel Helper

Скачайте файлы расширений Taboola Pixel Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The Taboola Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation.

It works in the background and scans for conversion, retargeting or new Taboola pixels, and provides real-time feedback on the implementation. 
In case the Taboola pixel helper found pixels on your page, a small number will appear on the extension's icon. This number indicates the number of pixels found.

To reach a detailed report regarding the pixels that were implemented on the page including possible implementation mistakes, just click on the Taboola pixel helper icon.                    

Основная информация о расширении

Название Taboola Pixel Helper Taboola Pixel Helper
ID aefiepimkogajhddmhcekceihikjcabd
Официальный URL https://chromewebstore.google.com/detail/taboola-pixel-helper/aefiepimkogajhddmhcekceihikjcabd
Описание This extension allows the user to troubleshoot problems when using Taboola Pixels.
Размер файла 620 KB
Количество установок 38,091
Текущая Версия 1.2.3
Последнее Обновление 2024-02-15
Дата публикации 2020-07-02
Рейтинг 4.40/5 Всего 5 оценок
Разработчик Taboola, Inc
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Taboola Pixel Helper",
    "description": "This extension allows the user to troubleshoot problems when using Taboola Pixels.",
    "version": "1.2.3",
    "action": {
        "default_popup": "index.html",
        "default_title": "Open Taboola Pixel Helper"
    },
    "background": {
        "service_worker": "background.min.js"
    },
    "icons": {
        "16": "logo-small.png",
        "48": "logo-small.png",
        "128": "logo-small.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "injected.min.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "webRequest",
        "storage"
    ]
}