PII Viewer for Google Analytics
The simple and easy way to view personally identifiable information (PII) in Google Analytics.
¿Qué es PII Viewer for Google Analytics?
PII Viewer for Google Analytics es una extensión de Chrome desarrollada por https://davidsimpson.me, y su función principal es "The simple and easy way to view personally identifiable information (PII) in Google Analytics.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión PII Viewer for Google Analytics
Descarga archivos de extensión PII Viewer for Google Analytics en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Sending personally identifiable information (PII) to Google Aanalytics is strictly prohibited, but sending a unique user ID is permitted. This extension allows you to map the user ID stored in Google Analytics to PII such as name and email address stored locally. Rather than building your own custom integration to map this data together, you can simply reference a locally stored CSV file and let this Chrome extension do the hard work. This means that you comply with the privacy policy, but get to understand your visitor data.
Información Básica de la Extensión
Nombre | PII Viewer for Google Analytics |
ID | kocaompbindpaanpabjeeechkofidmbh |
URL Oficial | https://chromewebstore.google.com/detail/pii-viewer-for-google-ana/kocaompbindpaanpabjeeechkofidmbh |
Descripción | The simple and easy way to view personally identifiable information (PII) in Google Analytics. |
Tamaño del Archivo | 3.09 MB |
Cantidad de Instalaciones | 2,945 |
Versión Actual | 0.0.14 |
Última Actualización | 2021-03-06 |
Fecha de Publicación | 2018-04-16 |
Calificación | 5.00/5 Total de 9 Calificaciones |
Desarrollador | https://davidsimpson.me |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://davidsimpson.me/pii-viewer-for-google-analytics/ |
URL de la Página de Ayuda | http://davidsimpson.me/2014/04/22/tutorial-using-pii-viewer-google-analytics-chrome-extension/ |
URL de la Página de Política de Privacidad | https://www.dsapps.dev/data-security-privacy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PII Viewer for Google Analytics", "version": "0.0.14", "manifest_version": 2, "description": "The simple and easy way to view personally identifiable information (PII) in Google Analytics.", "homepage_url": "http:\/\/davidsimpson.me\/pii-viewer-for-google-analytics", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "options_page": "src\/options\/options.html", "permissions": [ "https:\/\/analytics.google.com\/analytics\/web\/*", "https:\/\/www.google.com\/analytics\/*", "https:\/\/*.mailchimp.com\/*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/analytics.google.com\/analytics\/*", "https:\/\/www.google.com\/analytics\/*" ], "css": [ "src\/inject\/inject.css", "src\/inject\/bootstrap.min.css" ], "js": [ "js\/jquery\/jquery.min.js", "src\/inject\/inject.js", "src\/inject\/bootstrap.min.js" ] } ], "web_accessible_resources": [ "src\/options\/options.html", "js\/jquery\/jquery.min.map" ], "content_security_policy": "script-src 'self' https:\/\/analytics.google.com https:\/\/www.google-analytics.com https:\/\/*.api.mailchimp.com; object-src 'self'" } |