Meta Pixel Helper
The Meta Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation.
Cos'è Meta Pixel Helper?
Meta Pixel Helper è un'estensione di Chrome sviluppata da Meta, e la sua funzione principale è "The Meta Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Meta Pixel Helper
Scarica i file di estensione Meta Pixel Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Meta Pixel Helper |
ID | fdgfkebogiimcoedlicjlajpkdmockpc |
URL Ufficiale | https://chromewebstore.google.com/detail/meta-pixel-helper/fdgfkebogiimcoedlicjlajpkdmockpc |
Descrizione | The Meta Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation. |
Dimensione del File | 74.78 KB |
Conteggio Installazioni | 3,341,003 |
Versione Corrente | 3.0.7 |
Ultimo Aggiornamento | 2024-03-01 |
Data di Pubblicazione | 2020-02-10 |
Valutazione | 4.08/5 Totale 1116 Valutazioni |
Sviluppatore | Meta |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://developers.facebook.com/docs/ads-for-websites/pixel-troubleshooting |
URL della Pagina di Aiuto | https://developers.facebook.com/docs/ads-for-websites/pixel-troubleshooting |
Lingue Supportate | 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": [ "*:\/\/*\/*" ] } |