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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |