Privacy Sandbox Analysis Tool

Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs.

O que é Privacy Sandbox Analysis Tool?

Privacy Sandbox Analysis Tool é uma extensão do Chrome desenvolvida por albertomedina, e sua principal característica é "Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Privacy Sandbox Analysis Tool

Baixe arquivos de extensão Privacy Sandbox Analysis Tool no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Privacy Sandbox Analysis Tool Privacy Sandbox Analysis Tool
ID ehbnpceebmgpanbbfckhoefhdibijkef
URL Oficial https://chromewebstore.google.com/detail/privacy-sandbox-analysis/ehbnpceebmgpanbbfckhoefhdibijkef
Descrição Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs.
Tamanho do Arquivo 764 KB
Contagem de Instalações 5,000
Versão Atual 0.5.2
Última Atualização 2024-02-28
Data de Publicação 2023-11-30
Classificação 4.55/5 Total de 11 Avaliações
Desenvolvedor albertomedina
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/GoogleChromeLabs/ps-analysis-tool
URL da Página de Ajuda https://github.com/GoogleChromeLabs/ps-analysis-tool
Idiomas Suportados 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}