Analytics Percentage Highlighter
This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.
O que é Analytics Percentage Highlighter?
Analytics Percentage Highlighter é uma extensão do Chrome desenvolvida por https://beamusup.com, e sua principal característica é "This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Analytics Percentage Highlighter
Baixe arquivos de extensão Analytics Percentage Highlighter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | Analytics Percentage Highlighter |
ID | jakndcfkahdiighicdljidlhdabnafgl |
URL Oficial | https://chromewebstore.google.com/detail/analytics-percentage-high/jakndcfkahdiighicdljidlhdabnafgl |
Descrição | This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods. |
Tamanho do Arquivo | 19.88 KB |
Contagem de Instalações | 265 |
Versão Atual | 1.1 |
Última Atualização | 2023-11-11 |
Data de Publicação | 2013-07-25 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | https://beamusup.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://beamusup.com/tools/google-analytics-percentage-highlighter/ |
Idiomas Suportados | 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" ] } |