Analytics Percentage Highlighter
This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.
Was ist Analytics Percentage Highlighter?
Analytics Percentage Highlighter ist eine Chrome-Erweiterung, die von https://beamusup.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.".
Erweiterungsscreenshots
Analytics Percentage Highlighter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Analytics Percentage Highlighter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jakndcfkahdiighicdljidlhdabnafgl |
| Offizielle URL | https://chromewebstore.google.com/detail/analytics-percentage-high/jakndcfkahdiighicdljidlhdabnafgl |
| Beschreibung | This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods. |
| Dateigröße | 19.88 KB |
| Installationsanzahl | 265 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2023-11-11 |
| Veröffentlichungsdatum | 2013-07-25 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | https://beamusup.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | http://beamusup.com/tools/google-analytics-percentage-highlighter/ |
| Unterstützte Sprachen | 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"
]
} | |