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?

GA4 Fixer是由https://ga4tools.com開發的Chrome擴展程式,該擴展的主要功能是“Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載GA4 Fixer擴展crx文件

下載GA4 Fixer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 GA4 Fixer GA4 Fixer
ID diiaealnihhapbcgmkcbkapbbmfggemc
官方網址 https://chromewebstore.google.com/detail/ga4-fixer/diiaealnihhapbcgmkcbkapbbmfggemc
簡介 Patch holes in GA4 for better reporting. Adds '% of Total' in reports, 'Click to Copy' values, one-click report building and more.
檔案大小 1.4 MB
安裝次數 2,145
目前版本 2.0.0
更新時間 2024-03-04
上架時間 2024-02-02
評分 5.00/5 共 7 次評分
開發者 https://ga4tools.com
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}