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
拡張機能の基本情報
名前 | 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 |
Eメール | [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": [ "*:\/\/*\/*" ] } |