Analytics Percentage Highlighter
This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.
¿Qué es Analytics Percentage Highlighter?
Analytics Percentage Highlighter es una extensión de Chrome desarrollada por https://beamusup.com, y su función principal es "This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Analytics Percentage Highlighter
Descarga archivos de extensión Analytics Percentage Highlighter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | Analytics Percentage Highlighter |
ID | jakndcfkahdiighicdljidlhdabnafgl |
URL Oficial | https://chromewebstore.google.com/detail/analytics-percentage-high/jakndcfkahdiighicdljidlhdabnafgl |
Descripción | This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods. |
Tamaño del Archivo | 19.88 KB |
Cantidad de Instalaciones | 265 |
Versión Actual | 1.1 |
Última Actualización | 2023-11-11 |
Fecha de Publicación | 2013-07-25 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | https://beamusup.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://beamusup.com/tools/google-analytics-percentage-highlighter/ |
Idiomas Soportados | 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" ] } |