Roku pixel helper

Roku Pixel Helper is a Chrome extension that helps advertisers verify and troubleshoot warnings or errors during pixel installation.

Co to jest Roku pixel helper?

Roku pixel helper to rozszerzenie Chrome opracowane przez Roku, a jego główną funkcją jest „Roku Pixel Helper is a Chrome extension that helps advertisers verify and troubleshoot warnings or errors during pixel installation.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Roku pixel helper

Pobierz pliki rozszerzeń Roku 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

                        Roku Pixel Helper is a Chrome extension that helps advertisers verify, debug, and troubleshoot warnings or errors during pixel and event installation. For more information on the Roku Pixel Helper, see our Help Center: https://help.ads.roku.com/collections/5784517    


By using the Roku Pixel Helper, you agree to the Roku Ads Manager Terms and Conditions: https://docs.roku.com/published/ads-manager-terms-and-conditions  


About the Roku base pixel 
The Roku base pixel is a piece of JavaScript code that is placed on the advertiser's website or app to measure campaign activity and actions taken by users. A page view event is automatically placed along with the base pixel, allowing advertisers to see how many streamers visited their site or app after seeing their ad.                    

Podstawowe informacje o rozszerzeniu

Nazwa Roku pixel helper Roku pixel helper
ID kcpbomhhmopchbefhpphdboleijpjfge
Oficjalny URL https://chromewebstore.google.com/detail/roku-pixel-helper/kcpbomhhmopchbefhpphdboleijpjfge
Opis Roku Pixel Helper is a Chrome extension that helps advertisers verify and troubleshoot warnings or errors during pixel installation.
Rozmiar pliku 136 KB
Liczba instalacji 47
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2024-01-09
Data Publikacji 2023-10-31
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Roku
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://ads.roku.com/
Adres URL Strony Pomocy https://help.ads.roku.com/collections/5784517
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Roku pixel helper",
    "description": "Roku Pixel Helper is a Chrome extension that helps advertisers verify and troubleshoot warnings or errors during pixel installation.",
    "version": "1.0.3",
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": "icons\/roku-icon-128-neg.png",
        "default_title": "Roku pixel helper"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/injector.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}