PII Viewer for Google Analytics
The simple and easy way to view personally identifiable information (PII) in Google Analytics.
PII Viewer for Google Analytics là gì?
PII Viewer for Google Analytics là một tiện ích mở rộng Chrome được phát triển bởi https://davidsimpson.me, và tính năng chính của nó là "The simple and easy way to view personally identifiable information (PII) in Google Analytics.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PII Viewer for Google Analytics
Tải xuống các tệp mở rộng PII Viewer for Google Analytics dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PII Viewer for Google Analytics |
ID | kocaompbindpaanpabjeeechkofidmbh |
URL Chính Thức | https://chromewebstore.google.com/detail/pii-viewer-for-google-ana/kocaompbindpaanpabjeeechkofidmbh |
Mô tả | The simple and easy way to view personally identifiable information (PII) in Google Analytics. |
Kích Thước Tệp | 3.09 MB |
Số Lần Cài Đặt | 2,945 |
Phiên Bản Hiện Tại | 0.0.14 |
Cập Nhật Lần Cuối | 2021-03-06 |
Ngày Phát Hành | 2018-04-16 |
Đánh Giá | 5.00/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | https://davidsimpson.me |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://davidsimpson.me/pii-viewer-for-google-analytics/ |
URL Trang Trợ Giúp | http://davidsimpson.me/2014/04/22/tutorial-using-pii-viewer-google-analytics-chrome-extension/ |
URL Trang Chính Sách Bảo Mật | https://www.dsapps.dev/data-security-privacy |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |