Instant Tracking Monitor for Google Analytics

Show Analytics hits & tracking errors in the extension Icon and blocks hits after analysing them.

Instant Tracking Monitor for Google Analyticsคืออะไร?

Instant Tracking Monitor for Google Analytics เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Thomas Langnau และคุณลักษณะหลักของมันคือ "Show Analytics hits & tracking errors in the extension Icon and blocks hits after analysing them."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Instant Tracking Monitor for Google Analytics

ดาวน์โหลดไฟล์ส่วนขยาย Instant Tracking Monitor for Google Analytics ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        - Ein Chrome Addon für Webanalysten von einem Webanalysten - 

This extension does mainly four things for you: 

A: it provides an instant overview of the current Google Analytics tracking fired on a page. See the number of properties, number of pageview hits and number of other hits displayed in the extensions icon-badge.

B: it notifies you about 6 (possible) tracking errors e.g. Anonymize IP, duplicate Pageviews & Hitlength almost extended. You can turn off every error you want. 

C: Blocking Analytics Hits: This Option let's you block all Analytics hits. In contrast to typical Analytics Blockers for chrome, this extension only blocks the actual Hits which means, you can see & analyse them in the extension and with many tools like GTM Debug Mode.

D: Add your own tracking services you want to monitor & block other analytics hits, Ads Conversion Hits etc. 

Release Notes: 
0.6 : Lots of new features: GA4 Support, Serverside GA Monitoring, Add and monitor your own custom Tracking services.

0.5 : new name & images after violation of branding guidelines / includes now most app+web hits / see the number of ga hits in the popup graphic/ bug fixes

0.4 : Bug Fixing for new App+Web-Tracking / improved Error handling for "no Hit after analytics JS"/ Bug Fixing of ni-parameter (can be true&false now instead of only 1&0) // new clicks brand                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Instant Tracking Monitor for Google Analytics Instant Tracking Monitor for Google Analytics
ID mjppjlnifgocniaodibloehjeggcmkid
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/instant-tracking-monitor/mjppjlnifgocniaodibloehjeggcmkid
คำอธิบาย Show Analytics hits & tracking errors in the extension Icon and blocks hits after analysing them.
ขนาดไฟล์ 128 KB
จำนวนการติดตั้ง 2,025
เวอร์ชันปัจจุบัน 0.6.11
อัปเดตครั้งล่าสุด 2021-08-13
วันที่เผยแพร่ 2019-12-17
คะแนน 5.00/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Thomas Langnau
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instant Tracking Monitor for Google Analytics",
    "description": "Show Analytics hits & tracking errors in the extension Icon and blocks hits after analysing them.",
    "author": "Thomas Langnau",
    "version": "0.6.11",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "ico128.png"
    },
    "browser_action": {
        "default_icon": "qmd.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "",
        "storage"
    ]
}