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.”。

擴展截圖

screenshot
screenshot

下載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 Analytics Percentage Highlighter
ID jakndcfkahdiighicdljidlhdabnafgl
官方網址 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"
    ]
}