Analytics Tracker

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

O que é Analytics Tracker?

Analytics Tracker é uma extensão do Chrome desenvolvida por Kunjan Thakkar, e sua principal característica é "Extends the Developer Tools, adding tools for tracking the data logged to google analytics".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Analytics Tracker

Baixe arquivos de extensão Analytics Tracker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Analytics Tracker Analytics Tracker
ID eadbjpepaobdbloeenghnbeejhbidcpa
URL Oficial https://chromewebstore.google.com/detail/analytics-tracker/eadbjpepaobdbloeenghnbeejhbidcpa
Descrição Extends the Developer Tools, adding tools for tracking the data logged to google analytics
Tamanho do Arquivo 180 KB
Contagem de Instalações 2,347
Versão Atual 1.0.1
Última Atualização 2016-10-04
Data de Publicação 2016-10-04
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor Kunjan Thakkar
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://sites.google.com/site/analyticstrackerdevtool/
Idiomas Suportados 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"
}