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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Meta Pixel Helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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": [
        "*:\/\/*\/*"
    ]
}