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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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'" } |