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是由https://beamusup.com开发的Chrome扩展程序,该扩展的主要功能是“This extension allows automatically highlights positive and negative percentage differences in GA4 when comparing 2 time periods.”。
扩展截图
下载Analytics Percentage Highlighter扩展crx文件
下载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 |
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" ] } |