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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον albertomedina, και η κύρια λειτουργία του είναι "Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Privacy Sandbox Analysis Tool

Λήψη αρχείων επέκτασης 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
Επίσημο 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
Ηλεκτρονικό ταχυδρομείο [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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}