Taboola Pixel Helper

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

什么是Taboola Pixel Helper?

Taboola Pixel Helper是由Taboola, Inc开发的Chrome扩展程序,该扩展的主要功能是“This extension allows the user to troubleshoot problems when using Taboola Pixels.”。

扩展截图

screenshot
screenshot

下载Taboola Pixel Helper扩展crx文件

下载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"
    ]
}