Reddit Pixel Helper

The Reddit Pixel Helper is a tool to QA your pixel implementation.

Reddit Pixel Helper란 무엇입니까?

Reddit Pixel Helper은(는) Reddit Ads에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The Reddit Pixel Helper is a tool to QA your pixel implementation."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        While browsing any site, the extension badge will show the number of Reddit Pixel events firing on a page. Open the extension on any page with the pixel implemented to see which events are actively firing, identify any errors in their configuration, and get recommendations for fixing errors. Check out our Help Center for more info: https://advertising.reddithelp.com/en/categories/measurement/reddit-pixel-helper

By using the Reddit Pixel Helper you agree to the Reddit Advertising Platform Terms: https://advertising.reddithelp.com/en/categories/policy-guidelines/advertising-terms-ads-platform                    

확장 프로그램 기본 정보

이름 Reddit Pixel Helper Reddit Pixel Helper
ID ebgpcjlgganlidigifggjjiglghjnjcj
공식 URL https://chromewebstore.google.com/detail/reddit-pixel-helper/ebgpcjlgganlidigifggjjiglghjnjcj
설명 The Reddit Pixel Helper is a tool to QA your pixel implementation.
파일 크기 1.56 MB
설치 횟수 6,503
현재 버전 1.1.8
최근 업데이트 2024-01-10
출시 날짜 2022-07-27
평점 5.00/5 총 5 개의 평점
개발자 Reddit Ads
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://advertising.reddithelp.com/en/submit-request
개인정보 보호 정책 페이지 URL https://www.reddit.com/policies/privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Reddit Pixel Helper",
    "short_name": "Reddit Pixel Helper",
    "description": "The Reddit Pixel Helper is a tool to QA your pixel implementation.",
    "version": "1.1.8",
    "action": {
        "default_icon": {
            "16": "img\/icon_passive_16.png",
            "48": "img\/icon_passive_48.png",
            "128": "img\/icon_passive_128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Reddit Pixel Helper"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "webRequest",
        "tabs"
    ],
    "host_permissions": [
        "",
        "*:\/\/*.google.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "img\/icon_active_16.png",
        "48": "img\/icon_active_48.png",
        "128": "img\/icon_active_128.png"
    }
}