Webtrekk Tracker

See when Webtrekk events are being tracked.

What is Webtrekk Tracker?

Webtrekk Tracker is a Chrome extension developed by Emanuele Nardini, and its main feature is "See when Webtrekk events are being tracked.".

Extension Screenshots

screenshot
screenshot

Download Webtrekk Tracker Extension CRX File

Download Webtrekk Tracker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        The WebTrekk Tracker is a tool that lets you inspect the data being collected on any page of your instrumented site.

Just click on the extension icon in your browser for visualizing in an easy popup the sent data from that page along with captured parameters and variable values. It helps you and your developers to check the correct integration on every page of your site. It keeps tracked history data from any browser tab until you clear the log. Open it in "windowed" mode not to loose any event in live logging. Additional options can be configured in order to customize your experience. Export tracked data in text file for advanced analysis.
*NEW FEATURE*
Added Show icons menu setting. Now you can use icons in menu for an easier and more compact interface                    

Extension Basic Information

Name Webtrekk Tracker Webtrekk Tracker
ID gdooemnipkaehoocmkfhicaidlaejjgc
Official URL https://chromewebstore.google.com/detail/webtrekk-tracker/gdooemnipkaehoocmkfhicaidlaejjgc
Description See when Webtrekk events are being tracked.
File Size 198 KB
Installation Count 1,123
Current Version 1.1.7
Last Updated 2021-09-02
Publish Date 2018-06-15
Rating 5.00/5 Total 7 Ratings
Developer Emanuele Nardini
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Webtrekk Tracker",
    "manifest_version": 2,
    "version": "1.1.7",
    "description": "See when Webtrekk events are being tracked.",
    "permissions": [
        "",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "js": [
                "content.js"
            ],
            "css": [
                "web_content\/ipopup.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": false
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "browser_action": {
        "browser_style": false,
        "default_popup": "popup.html",
        "default_icon": {
            "16": "webtrekk_logo16.png",
            "48": "webtrekk_logo48.png",
            "128": "webtrekk_logo128.png"
        }
    },
    "icons": {
        "16": "webtrekk_logo16.png",
        "48": "webtrekk_logo48.png",
        "128": "webtrekk_logo128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "web_content\/*.*",
        "web_content\/pe-icon-7-stroke\/css\/*.*",
        "web_content\/pe-icon-7-stroke\/fonts\/*.*"
    ]
}