Global Privacy Control (GPC) Inspector

This GPC Chrome Extension enables the Global Privacy Control opt-out signal and evaluates how websites respond to the setting

Τι είναι το Global Privacy Control (GPC) Inspector;

Το Global Privacy Control (GPC) Inspector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://protegis.io, και η κύρια λειτουργία του είναι "This GPC Chrome Extension enables the Global Privacy Control opt-out signal and evaluates how websites respond to the setting".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Global Privacy Control (GPC) Inspector

Λήψη αρχείων επέκτασης Global Privacy Control (GPC) Inspector σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This Global Privacy Control Chrome Extension enables the GPC setting and evaluates whether whether websites honor the opt-out setting by providing transparency into the personal data shared with third parties.

The right for website visitors to opt-out of the sale of personal information is a hallmark of data privacy laws such as the California Consumer Privacy Act (CCPA). Regulators are accelerating enforcement against companies that do not honor the Global Privacy Control (GPC) signal as a valid opt-out.  "Under law, [GPC] must be honored by covered businesses as a valid consumer request to stop the sale of personal information." https://oag.ca.gov/privacy/ccpa"

For developers and IT teams, this extension helps understand and debug how webpages respond to the GPC signal. Diagnostic capabilities include:
 - Validate the GPC signal was set and the website response is consistent with the GPC specification
- Diagnose website behavior including whether the GPC signal was read by the page
- Debug whether personal data is shared by examining information provided to third parties using beacons and cookies.

Questions? Feedback? We'd love to hear from you at [email protected]                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Global Privacy Control (GPC) Inspector Global Privacy Control (GPC) Inspector
ID niiahgnkkalkindhghjcaojcpbkhfbbp
Επίσημο URL https://chromewebstore.google.com/detail/global-privacy-control-gp/niiahgnkkalkindhghjcaojcpbkhfbbp
Περιγραφή This GPC Chrome Extension enables the Global Privacy Control opt-out signal and evaluates how websites respond to the setting
Μέγεθος Αρχείου 1.46 MB
Αριθμός Εγκαταστάσεων 1,628
Τρέχουσα Έκδοση 0.1.4
Τελευταία Ενημέρωση 2024-01-13
Ημερομηνία Δημοσίευσης 2022-12-10
Αξιολόγηση 4.43/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής https://protegis.io
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.protegis.io
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Global Privacy Control (GPC) Inspector",
    "version": "0.1.4",
    "description": "This GPC Chrome Extension enables the Global Privacy Control opt-out signal and evaluates how websites respond to the setting",
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "declarativeNetRequestFeedback",
        "tabs",
        "scripting",
        "webRequest"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "match_origin_as_fallback": true,
            "all_frames": true,
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inject.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "images\/shield-16.png",
        "32": "images\/shield-32.png",
        "48": "images\/shield-48.png",
        "128": "images\/shield-128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/shield-16.png",
            "32": "images\/shield-32.png",
            "48": "images\/shield-48.png",
            "128": "images\/shield-128.png"
        },
        "default_title": "Global Privacy Control Inspector",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}