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