Privacy Sandbox Analysis Tool
Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs.
Privacy Sandbox Analysis Tool란 무엇입니까?
Privacy Sandbox Analysis Tool은(는) albertomedina에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs."입니다.
확장 프로그램 스크린샷
Privacy Sandbox Analysis Tool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If your site uses third-party cookies it's time to take action as we approach their deprecation. Chrome plans to disable third-party cookies for 1% of users from Q1 2024 to facilitate testing, and then ramp up to 100% of users from Q3 2024. This tool supports the analysis of browsing sessions by shedding light on cookie usage as well as insights on the use and behavior of Privacy Sandbox APIs in Chrome. This tool is being developed as an Open Source project available on Github, and to learn about the tool and start auditing cookie usage on your site, please check the information on the PSAT repository Wiki page: https://github.com/GoogleChromeLabs/ps-analysis-tool/wiki
확장 프로그램 기본 정보
이름 | Privacy Sandbox Analysis Tool |
ID | ehbnpceebmgpanbbfckhoefhdibijkef |
공식 URL | https://chromewebstore.google.com/detail/privacy-sandbox-analysis/ehbnpceebmgpanbbfckhoefhdibijkef |
설명 | Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs. |
파일 크기 | 764 KB |
설치 횟수 | 5,000 |
현재 버전 | 0.5.2 |
최근 업데이트 | 2024-02-28 |
출시 날짜 | 2023-11-30 |
평점 | 4.55/5 총 11 개의 평점 |
개발자 | albertomedina |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/GoogleChromeLabs/ps-analysis-tool |
도움말 페이지 URL | https://github.com/GoogleChromeLabs/ps-analysis-tool |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Privacy Sandbox Analysis Tool", "description": "Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs.", "version": "0.5.2", "manifest_version": 3, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "permissions": [ "storage", "tabs", "webNavigation", "webRequest", "cookies", "debugger", "management", "contentSettings" ], "host_permissions": [ "*:\/\/*\/*" ], "devtools_page": "devtools\/devtools.html", "background": { "service_worker": "service-worker.js", "type": "module" }, "content_scripts": [ { "js": [ "content-script.js" ], "matches": [ "*:\/\/*\/*" ] } ], "action": { "default_popup": "popup\/index.html", "default_icon": "icons\/icon-48.png" }, "web_accessible_resources": [ { "resources": [ "assets\/data\/*.json", "data\/*json" ], "matches": [ "*:\/\/*\/*" ] } ] } |