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."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ 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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Analytics Percentage Highlighter 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"
    ]
}