Analytics Tracker

Extends the Developer Tools, adding tools for tracking the data logged to google analytics

What is Analytics Tracker?

Analytics Tracker is a Chrome extension developed by Kunjan Thakkar, and its main feature is "Extends the Developer Tools, adding tools for tracking the data logged to google analytics".

Extension Screenshots

screenshot
screenshot

Download Analytics Tracker Extension CRX File

Download Analytics 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

                        This extension allows you to track the data that your webpage is logging to the analytics server based on your activity. Analytics Tracker is a devtool and will be available in the developer tools after installation. It adds a new tab in the developer tools by the name 'Google Analytics'. You can view it by More tools -> Developer Tools from the Chrome Menu. Hit the Start recording button to start tracking the analytics data. You can now start browsing/using the website generally and it will show you all the data that the site is logging via analytics. You can stop/restart/clear this data at any point. 
This extension can also be used by developers to validate if they have covered all checkpoints for logging data to analytics and test out the logging as a user.                    

Extension Basic Information

Name Analytics Tracker Analytics Tracker
ID eadbjpepaobdbloeenghnbeejhbidcpa
Official URL https://chromewebstore.google.com/detail/analytics-tracker/eadbjpepaobdbloeenghnbeejhbidcpa
Description Extends the Developer Tools, adding tools for tracking the data logged to google analytics
File Size 180 KB
Installation Count 2,347
Current Version 1.0.1
Last Updated 2016-10-04
Publish Date 2016-10-04
Rating 3.00/5 Total 1 Ratings
Developer Kunjan Thakkar
Email [email protected]
Payment Type free
Extension Website https://sites.google.com/site/analyticstrackerdevtool/
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Analytics Tracker",
    "version": "1.0.1",
    "description": "Extends the Developer Tools, adding tools for tracking the data logged to google analytics",
    "devtools_page": "devtools.html",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "iconDev.png"
    },
    "permissions": [
        "webRequest",
        "*:\/\/*\/"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "minimum_chrome_version": "25.0.1364.97"
}