Privacy Sandbox Analysis Tool

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

Privacy Sandbox Analysis Tool là gì?

Privacy Sandbox Analysis Tool là một tiện ích mở rộng Chrome được phát triển bởi albertomedina, và tính năng chính của nó là "Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Privacy Sandbox Analysis Tool

Tải xuống các tệp mở rộng Privacy Sandbox Analysis Tool dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Privacy Sandbox Analysis Tool Privacy Sandbox Analysis Tool
ID ehbnpceebmgpanbbfckhoefhdibijkef
URL Chính Thức https://chromewebstore.google.com/detail/privacy-sandbox-analysis/ehbnpceebmgpanbbfckhoefhdibijkef
Mô tả Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs.
Kích Thước Tệp 764 KB
Số Lần Cài Đặt 5,000
Phiên Bản Hiện Tại 0.5.2
Cập Nhật Lần Cuối 2024-02-28
Ngày Phát Hành 2023-11-30
Đánh Giá 4.55/5 Tổng số 11 Đánh Giá
Nhà Phát Triển albertomedina
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/GoogleChromeLabs/ps-analysis-tool
URL Trang Trợ Giúp https://github.com/GoogleChromeLabs/ps-analysis-tool
Ngôn Ngữ Được Hỗ Trợ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}