Meta Pixel Helper
The Meta Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation.
¿Qué es Meta Pixel Helper?
Meta Pixel Helper es una extensión de Chrome desarrollada por Meta, y su función principal es "The Meta Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Meta Pixel Helper
Descarga archivos de extensión Meta Pixel Helper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Meta Pixel Helper |
ID | fdgfkebogiimcoedlicjlajpkdmockpc |
URL Oficial | https://chromewebstore.google.com/detail/meta-pixel-helper/fdgfkebogiimcoedlicjlajpkdmockpc |
Descripción | The Meta Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation. |
Tamaño del Archivo | 74.78 KB |
Cantidad de Instalaciones | 3,341,003 |
Versión Actual | 3.0.7 |
Última Actualización | 2024-03-01 |
Fecha de Publicación | 2020-02-10 |
Calificación | 4.08/5 Total de 1116 Calificaciones |
Desarrollador | Meta |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://developers.facebook.com/docs/ads-for-websites/pixel-troubleshooting |
URL de la Página de Ayuda | https://developers.facebook.com/docs/ads-for-websites/pixel-troubleshooting |
Idiomas Soportados | 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": [ "*:\/\/*\/*" ] } |