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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The Meta Pixel Helper is a troubleshooting tool that helps you validate your pixel implementation."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Meta Pixel Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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": [ "*:\/\/*\/*" ] } |