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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}