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.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載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 Privacy Sandbox Analysis Tool
ID ehbnpceebmgpanbbfckhoefhdibijkef
官方網址 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}