Meta Pixel Helper

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

Τι είναι το Meta Pixel Helper;

Το Meta Pixel Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Meta, και η κύρια λειτουργία του είναι "The Meta Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Meta Pixel Helper

Λήψη αρχείων επέκτασης Meta Pixel Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The Facebook Pixel Helper works in the background to look for conversion or Facebook pixels and provide realtime feedback on the implementation. A small number will appear on the Facebook Pixel Helper icon to indicate number of pixel events. When clicked, a panel will expand to show a detailed overview of the page's pixels, including warnings, errors and successes. Learn more about using Facebook pixels here: https://developers.facebook.com/docs/marketing-api/facebook-pixel                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Meta Pixel Helper Meta Pixel Helper
ID fdgfkebogiimcoedlicjlajpkdmockpc
Επίσημο URL https://chromewebstore.google.com/detail/meta-pixel-helper/fdgfkebogiimcoedlicjlajpkdmockpc
Περιγραφή The Meta Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation.
Μέγεθος Αρχείου 74.78 KB
Αριθμός Εγκαταστάσεων 3,341,003
Τρέχουσα Έκδοση 3.0.7
Τελευταία Ενημέρωση 2024-03-01
Ημερομηνία Δημοσίευσης 2020-02-10
Αξιολόγηση 4.08/5 Συνολικά 1116 Αξιολογήσεις
Προγραμματιστής Meta
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://developers.facebook.com/docs/ads-for-websites/pixel-troubleshooting
Διεύθυνση URL της Σελίδας Βοήθειας https://developers.facebook.com/docs/ads-for-websites/pixel-troubleshooting
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Meta Pixel Helper",
    "short_name": "Meta Pixel Helper",
    "description": "The Meta Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation.",
    "version": "3.0.7",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.facebook.com\/ads\/*",
                "*:\/\/business.facebook.com\/ads\/*",
                "*:\/\/www.facebook.com\/*"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "webRequest",
        "unlimitedStorage",
        "webNavigation"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "19": "img\/pixel_helper_icon_faded_19.png",
            "38": "img\/pixel_helper_icon_faded_38.png"
        }
    },
    "icons": {
        "16": "img\/pixel_helper_icon_16.png",
        "48": "img\/pixel_helper_icon_48.png",
        "128": "img\/pixel_helper_icon_128.png"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}