Taboola Pixel Helper

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

Taboola Pixel Helper là gì?

Taboola Pixel Helper là một tiện ích mở rộng Chrome được phát triển bởi Taboola, Inc, và tính năng chính của nó là "This extension allows the user to troubleshoot problems when using Taboola Pixels.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Taboola Pixel Helper

Tải xuống các tệp mở rộng Taboola Pixel Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Taboola Pixel Helper Taboola Pixel Helper
ID aefiepimkogajhddmhcekceihikjcabd
URL Chính Thức https://chromewebstore.google.com/detail/taboola-pixel-helper/aefiepimkogajhddmhcekceihikjcabd
Mô tả This extension allows the user to troubleshoot problems when using Taboola Pixels.
Kích Thước Tệp 620 KB
Số Lần Cài Đặt 38,091
Phiên Bản Hiện Tại 1.2.3
Cập Nhật Lần Cuối 2024-02-15
Ngày Phát Hành 2020-07-02
Đánh Giá 4.40/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Taboola, Inc
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}