Event Tracking Tracker

Plugin to track Google Analytics Event Tracker event calls

Event Tracking Tracker란 무엇입니까?

Event Tracking Tracker은(는) kirk-bi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Plugin to track Google Analytics Event Tracker event calls"입니다.

확장 프로그램 스크린샷

screenshot

Event Tracking Tracker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Simple persistent tracker that logs Google Analytics Events calls. Now supports GA4 events.

Primarily intended for web developers to debug GA Events calls.
1.1.7
-------------
Migrate to Manifest V3
- Adding export json (via jsonblob.com) and share to social (facebook, linkedin)

1.1.6 (Chrome/Firefox)
---------------
- Adding browser extension buttons

1.1.5 (Chrome/Firefox)
---------------
- Dynamic tabs now also display a tab for any open Chrome tab that ETT has recorded events for
- Fixed some potential bugs

1.1.4 (Chrome)
---------------
- Replaced 'This tab' with dynamic tabs showing every active tab from every non-popup Chrome window
- Width and height of window remembered
- Fix data migration error
- Fix multiple windows
- Reduced interval delay back down from 5s to 3.5s

1.1.3 (Chrome)
---------------
- ETT is now a detached window!
- Added Timestamp column
- GA4 event columns in web view and csv
- Fix overwriting prefs
- Improved table flow

1.1.2 (Chrome)
---------------
- New .CSV button to download a .csv file of the current view
- ETT now remembers if you had 'All Tabs' or 'This Tab' open
- It also now remembers if you had short URL's or full URL's displayed
- Limit 100 events in storage
- Increase display of events from 14 to 100
- Increase time between intervals from 3s to 5s
- Update GA help link to GA4

1.1.1 (Chrome)
---------------
- Fix install data issue

1.1.0 (Chrome)
---------------
- Added initial support for GA4 events (layout to be updated later)
- Fixed full URL's not displaying
- Added 'This tab' feature
- Upgraded to Google extension manifest v3

1.0.4 changes
---------------
- Click URL header to toggle showing full URL

1.0.3 changes
---------------
- Now supports the new GA api calls for event tracking https://developers.google.com/analytics/devguides/collection/analyticsjs/advanced
- Reduced memory usage (although it was already tiny before)
- Now using plugin manifest v2                    

확장 프로그램 기본 정보

이름 Event Tracking Tracker Event Tracking Tracker
ID npjkfahkbgoagkfpkidpjdemjjmmbcim
공식 URL https://chromewebstore.google.com/detail/event-tracking-tracker/npjkfahkbgoagkfpkidpjdemjjmmbcim
설명 Plugin to track Google Analytics Event Tracker event calls
파일 크기 117 KB
설치 횟수 24,630
현재 버전 1.1.7
최근 업데이트 2024-02-16
출시 날짜 2015-05-30
평점 4.32/5 총 25 개의 평점
개발자 kirk-bi
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://sites.google.com/view/kirk-policy/home
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Event Tracking Tracker",
    "description": "Plugin to track Google Analytics Event Tracker event calls",
    "version": "1.1.7",
    "icons": {
        "16": "ett16.png",
        "48": "ett48.png",
        "128": "ett.png"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "permissions": [
        "webRequest",
        "storage",
        "tabs",
        "declarativeNetRequest"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "popup.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Event Tracking Tracker",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/content.js"
            ]
        }
    ]
}