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ファイルをダウンロード
Privacy Sandbox Analysis Tool拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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": [ "*:\/\/*\/*" ] } ] } |