Analytics Tracker
Extends the Developer Tools, adding tools for tracking the data logged to google analytics
什麼是Analytics Tracker?
Analytics Tracker是由Kunjan Thakkar開發的Chrome擴展程式,該擴展的主要功能是“Extends the Developer Tools, adding tools for tracking the data logged to google analytics”。
擴展截圖
下載Analytics Tracker擴展crx文件
下載Analytics Tracker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Analytics Tracker |
ID | eadbjpepaobdbloeenghnbeejhbidcpa |
官方網址 | https://chromewebstore.google.com/detail/analytics-tracker/eadbjpepaobdbloeenghnbeejhbidcpa |
簡介 | Extends the Developer Tools, adding tools for tracking the data logged to google analytics |
檔案大小 | 180 KB |
安裝次數 | 2,347 |
目前版本 | 1.0.1 |
更新時間 | 2016-10-04 |
上架時間 | 2016-10-04 |
評分 | 3.00/5 共 1 次評分 |
開發者 | Kunjan Thakkar |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://sites.google.com/site/analyticstrackerdevtool/ |
支援的語言 | 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" } |