Analytics Percentage Highlighter

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

Cos'è Analytics Percentage Highlighter?

Analytics Percentage Highlighter è un'estensione di Chrome sviluppata da https://beamusup.com, e la sua funzione principale è "This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Analytics Percentage Highlighter

Scarica i file di estensione Analytics Percentage Highlighter 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

                        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!                    

Informazioni di Base sull'Estensione

Nome Analytics Percentage Highlighter Analytics Percentage Highlighter
ID jakndcfkahdiighicdljidlhdabnafgl
URL Ufficiale https://chromewebstore.google.com/detail/analytics-percentage-high/jakndcfkahdiighicdljidlhdabnafgl
Descrizione This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.
Dimensione del File 19.88 KB
Conteggio Installazioni 265
Versione Corrente 1.1
Ultimo Aggiornamento 2023-11-11
Data di Pubblicazione 2013-07-25
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://beamusup.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://beamusup.com/tools/google-analytics-percentage-highlighter/
Lingue Supportate 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"
    ]
}