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.".
Снимки экрана расширения
Скачать файл 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! Основная информация о расширении
| Название | |
| 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"
]
} | |