Analytics Percentage Highlighter

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

Τι είναι το Analytics Percentage Highlighter;

Το Analytics Percentage Highlighter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://beamusup.com, και η κύρια λειτουργία του είναι "This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Analytics Percentage Highlighter

Λήψη αρχείων επέκτασης Analytics Percentage Highlighter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Analytics Percentage Highlighter Analytics Percentage Highlighter
ID jakndcfkahdiighicdljidlhdabnafgl
Επίσημο URL https://chromewebstore.google.com/detail/analytics-percentage-high/jakndcfkahdiighicdljidlhdabnafgl
Περιγραφή This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.
Μέγεθος Αρχείου 19.88 KB
Αριθμός Εγκαταστάσεων 265
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2023-11-11
Ημερομηνία Δημοσίευσης 2013-07-25
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://beamusup.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://beamusup.com/tools/google-analytics-percentage-highlighter/
Υποστηριζόμενες Γλώσσες 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"
    ]
}