Privacy Sandbox Analysis Tool
Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs.
Qu'est-ce que Privacy Sandbox Analysis Tool ?
Privacy Sandbox Analysis Tool est une extension Chrome développée par albertomedina, et sa fonction principale est "Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Privacy Sandbox Analysis Tool
Téléchargez les fichiers d'extension Privacy Sandbox Analysis Tool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Privacy Sandbox Analysis Tool |
ID | ehbnpceebmgpanbbfckhoefhdibijkef |
URL Officiel | https://chromewebstore.google.com/detail/privacy-sandbox-analysis/ehbnpceebmgpanbbfckhoefhdibijkef |
Description | Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs. |
Taille du Fichier | 764 KB |
Nombre d'Installations | 5,000 |
Version Actuelle | 0.5.2 |
Dernière Mise à Jour | 2024-02-28 |
Date de Publication | 2023-11-30 |
Évaluation | 4.55/5 Total 11 Évaluations |
Développeur | albertomedina |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/GoogleChromeLabs/ps-analysis-tool |
URL de la Page d'Aide | https://github.com/GoogleChromeLabs/ps-analysis-tool |
Langues Prises en Charge | 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": [ "*:\/\/*\/*" ] } ] } |