Reddit Pixel Helper

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

O que é Reddit Pixel Helper?

Reddit Pixel Helper é uma extensão do Chrome desenvolvida por Reddit Ads, e sua principal característica é "The Reddit Pixel Helper is a tool to QA your pixel implementation.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Reddit Pixel Helper

Baixe arquivos de extensão Reddit Pixel Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Reddit Pixel Helper Reddit Pixel Helper
ID ebgpcjlgganlidigifggjjiglghjnjcj
URL Oficial https://chromewebstore.google.com/detail/reddit-pixel-helper/ebgpcjlgganlidigifggjjiglghjnjcj
Descrição The Reddit Pixel Helper is a tool to QA your pixel implementation.
Tamanho do Arquivo 1.56 MB
Contagem de Instalações 6,503
Versão Atual 1.1.8
Última Atualização 2024-01-10
Data de Publicação 2022-07-27
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor Reddit Ads
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://advertising.reddithelp.com/en/submit-request
URL da Página de Política de Privacidade https://www.reddit.com/policies/privacy-policy
Idiomas Suportados 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"
    }
}