Analytics Tracker
Extends the Developer Tools, adding tools for tracking the data logged to google analytics
Qu'est-ce que Analytics Tracker ?
Analytics Tracker est une extension Chrome développée par Kunjan Thakkar, et sa fonction principale est "Extends the Developer Tools, adding tools for tracking the data logged to google analytics".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Analytics Tracker
Téléchargez les fichiers d'extension Analytics Tracker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Analytics Tracker |
ID | eadbjpepaobdbloeenghnbeejhbidcpa |
URL Officiel | https://chromewebstore.google.com/detail/analytics-tracker/eadbjpepaobdbloeenghnbeejhbidcpa |
Description | Extends the Developer Tools, adding tools for tracking the data logged to google analytics |
Taille du Fichier | 180 KB |
Nombre d'Installations | 2,347 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2016-10-04 |
Date de Publication | 2016-10-04 |
Évaluation | 3.00/5 Total 1 Évaluations |
Développeur | Kunjan Thakkar |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://sites.google.com/site/analyticstrackerdevtool/ |
Langues Prises en Charge | 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" } |