Analytics Percentage Highlighter

This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.

Co to jest Analytics Percentage Highlighter?

Analytics Percentage Highlighter to rozszerzenie Chrome opracowane przez https://beamusup.com, a jego główną funkcją jest „This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Analytics Percentage Highlighter

Pobierz pliki rozszerzeń Analytics Percentage Highlighter 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

                        This extension allows automatically highlights positive and negative percentage differences in Google Analytics 4 (GA4 only) when comparing 2 time periods. 

Goto options and it also allows you to add different percentages and colours if you want. So for example if you only want -0% to -10% to be yellow and anything lower than -10% to be red you can do it.

This extension should help you analyse your data quicker. Give it a try!                    

Podstawowe informacje o rozszerzeniu

Nazwa Analytics Percentage Highlighter Analytics Percentage Highlighter
ID jakndcfkahdiighicdljidlhdabnafgl
Oficjalny URL https://chromewebstore.google.com/detail/analytics-percentage-high/jakndcfkahdiighicdljidlhdabnafgl
Opis This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.
Rozmiar pliku 19.88 KB
Liczba instalacji 265
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2023-11-11
Data Publikacji 2013-07-25
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://beamusup.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://beamusup.com/tools/google-analytics-percentage-highlighter/
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Analytics Percentage Highlighter",
    "description": "This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.",
    "version": "1.1",
    "icons": {
        "16": "icons\/icon.png",
        "32": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/analytics.google.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "action": {
        "default_title": "Show settings",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ]
}