Reddit Pixel Helper

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

Cos'è Reddit Pixel Helper?

Reddit Pixel Helper è un'estensione di Chrome sviluppata da Reddit Ads, e la sua funzione principale è "The Reddit Pixel Helper is a tool to QA your pixel implementation.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Reddit Pixel Helper

Scarica i file di estensione Reddit Pixel Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Reddit Pixel Helper Reddit Pixel Helper
ID ebgpcjlgganlidigifggjjiglghjnjcj
URL Ufficiale https://chromewebstore.google.com/detail/reddit-pixel-helper/ebgpcjlgganlidigifggjjiglghjnjcj
Descrizione The Reddit Pixel Helper is a tool to QA your pixel implementation.
Dimensione del File 1.56 MB
Conteggio Installazioni 6,503
Versione Corrente 1.1.8
Ultimo Aggiornamento 2024-01-10
Data di Pubblicazione 2022-07-27
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore Reddit Ads
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://advertising.reddithelp.com/en/submit-request
URL della Pagina della Politica sulla Privacy https://www.reddit.com/policies/privacy-policy
Lingue Supportate 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"
    }
}