Meta Pixel Helper

Meta Pixel Helper

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

Additional files are visible only to premium users

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": [
    "*://*/*"
  ]
}