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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Privacy Sandbox Analysis Tool एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}