GA4 Fixer
Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more.
GA4 Fixer là gì?
GA4 Fixer là một tiện ích mở rộng Chrome được phát triển bởi https://ga4tools.com, và tính năng chính của nó là "Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng GA4 Fixer
Tải xuống các tệp mở rộng GA4 Fixer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Pain, anguish and uncertainty lurk around every corner in GA4 land and there is only one vigilante who can stop it…GA4 Fixer! GA4 Fixer is here to kick some graphs! Bringing back features like '% of total and copy/paste (yes copy/paste is nostalgic now) to new features like hiding GA4 announcements. GA4 Fixer will save your day, or at least make you a little less frustrated which is all that you can ask for in this profession.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | GA4 Fixer |
ID | diiaealnihhapbcgmkcbkapbbmfggemc |
URL Chính Thức | https://chromewebstore.google.com/detail/ga4-fixer/diiaealnihhapbcgmkcbkapbbmfggemc |
Mô tả | Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more. |
Kích Thước Tệp | 1.4 MB |
Số Lần Cài Đặt | 2,145 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2024-03-04 |
Ngày Phát Hành | 2024-02-02 |
Đánh Giá | 5.00/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | https://ga4tools.com |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GA4 Fixer", "version": "2.0.0", "description": "Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more.", "background": { "service_worker": "background.js" }, "permissions": [ "activeTab", "storage", "scripting", "notifications" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/ga4fixer16.png", "48": "images\/ga4fixer48.png", "128": "images\/ga4fixer128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*.analytics.google.com\/*" ], "css": [ "style.css" ], "js": [ "content-script.js" ], "run_at": "document_idle" } ], "icons": { "16": "images\/ga4fixer16.png", "48": "images\/ga4fixer48.png", "128": "images\/ga4fixer128.png" } } |