Meta Pixel Helper
The Meta Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation.
什麼是Meta Pixel Helper?
Meta Pixel Helper是由Meta開發的Chrome擴展程式,該擴展的主要功能是“The Meta Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation.”。
擴展截圖
下載Meta Pixel Helper擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | fdgfkebogiimcoedlicjlajpkdmockpc |
| 官方網址 | 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": [
"*:\/\/*\/*"
]
} | |