Reddit Pixel Helper

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

Что такое Reddit Pixel Helper?

Reddit Pixel Helper - это расширение Chrome, разработанное Reddit Ads, и его основная функция - "The Reddit Pixel Helper is a tool to QA your pixel implementation.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Reddit Pixel Helper

Скачайте файлы расширений Reddit Pixel Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    }
}