Reddit Pixel Helper

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

Co to jest Reddit Pixel Helper?

Reddit Pixel Helper to rozszerzenie Chrome opracowane przez Reddit Ads, a jego główną funkcją jest „The Reddit Pixel Helper is a tool to QA your pixel implementation.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Reddit Pixel Helper

Pobierz pliki rozszerzeń Reddit Pixel Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Reddit Pixel Helper Reddit Pixel Helper
ID ebgpcjlgganlidigifggjjiglghjnjcj
Oficjalny URL https://chromewebstore.google.com/detail/reddit-pixel-helper/ebgpcjlgganlidigifggjjiglghjnjcj
Opis The Reddit Pixel Helper is a tool to QA your pixel implementation.
Rozmiar pliku 1.56 MB
Liczba instalacji 6,503
Aktualna Wersja 1.1.8
Ostatnia Aktualizacja 2024-01-10
Data Publikacji 2022-07-27
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper Reddit Ads
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://advertising.reddithelp.com/en/submit-request
Adres URL Strony Polityki Prywatności https://www.reddit.com/policies/privacy-policy
Obsługiwane Języki 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"
    }
}