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
Eメール [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"
    ]
}