PII Viewer for Google Analytics
The simple and easy way to view personally identifiable information (PII) in Google Analytics.
什麼是PII Viewer for Google Analytics?
PII Viewer for Google Analytics是由https://davidsimpson.me開發的Chrome擴展程式,該擴展的主要功能是“The simple and easy way to view personally identifiable information (PII) in Google Analytics.”。
擴展截圖
下載PII Viewer for Google Analytics擴展crx文件
下載PII Viewer for Google Analytics擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | PII Viewer for Google Analytics |
ID | kocaompbindpaanpabjeeechkofidmbh |
官方網址 | https://chromewebstore.google.com/detail/pii-viewer-for-google-ana/kocaompbindpaanpabjeeechkofidmbh |
簡介 | The simple and easy way to view personally identifiable information (PII) in Google Analytics. |
檔案大小 | 3.09 MB |
安裝次數 | 2,945 |
目前版本 | 0.0.14 |
更新時間 | 2021-03-06 |
上架時間 | 2018-04-16 |
評分 | 5.00/5 共 9 次評分 |
開發者 | https://davidsimpson.me |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://davidsimpson.me/pii-viewer-for-google-analytics/ |
說明頁面URL | http://davidsimpson.me/2014/04/22/tutorial-using-pii-viewer-google-analytics-chrome-extension/ |
隱私政策頁面URL | https://www.dsapps.dev/data-security-privacy |
支援的語言 | 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'" } |