GPC Privacy Choice

GPC Privacy Choice is a research extension that studies usable privacy choice mechanisms on the web

Qu'est-ce que GPC Privacy Choice ?

GPC Privacy Choice est une extension Chrome développée par http://privacytechlab.org, et sa fonction principale est "GPC Privacy Choice is a research extension that studies usable privacy choice mechanisms on the web".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension GPC Privacy Choice

Téléchargez les fichiers d'extension GPC Privacy Choice au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension is part of a research project at Wesleyan University, Connecticut on helping users to tell websites that they do not want their data to be sold or shared. Please only install this extension if you are participating in our research project. Otherwise, it will not work.                    

Informations de Base sur l'Extension

Nom GPC Privacy Choice GPC Privacy Choice
ID ambkmcacbikgdchhjohhkfngeahpolnk
URL Officiel https://chrome.google.com/webstore/detail/gpc-privacy-choice/ambkmcacbikgdchhjohhkfngeahpolnk
Description GPC Privacy Choice is a research extension that studies usable privacy choice mechanisms on the web
Taille du Fichier 2.64 MB
Nombre d'Installations 71
Version Actuelle 2.9.0
Dernière Mise à Jour 2022-11-07
Date de Publication 2022-04-10
Évaluation 1.00/5 Total 1 Évaluations
Développeur http://privacytechlab.org
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://privacytechlab.org
URL de la Page d'Aide https://github.com/privacy-tech-lab/gpc-privacy-choice
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPC Privacy Choice",
    "version": "2.9.0",
    "description": "GPC Privacy Choice is a research extension that studies usable privacy choice mechanisms on the web",
    "permissions": [
        "webRequest",
        "webNavigation",
        "storage",
        "tabs",
        "contentSettings",
        "geolocation",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_title": "GPC Privacy Choice"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "adDomains.txt",
                "json\/*.json"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "32": ".\/img\/gpc-choice-icon.png",
        "128": ".\/img\/gpc-choice-icon.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "universal_GPC",
                "enabled": false,
                "path": "rulesets\/global.json"
            },
            {
                "id": "advertising",
                "enabled": false,
                "path": "rulesets\/Advertising.json"
            },
            {
                "id": "FG",
                "enabled": false,
                "path": "rulesets\/FingerprintingGeneral.json"
            },
            {
                "id": "FI",
                "enabled": false,
                "path": "rulesets\/FingerprintingInvasive.json"
            },
            {
                "id": "social",
                "enabled": false,
                "path": "rulesets\/Social.json"
            },
            {
                "id": "disconnect",
                "enabled": false,
                "path": "rulesets\/Disconnect.json"
            },
            {
                "id": "cryptomining",
                "enabled": false,
                "path": "rulesets\/Cryptomining.json"
            },
            {
                "id": "analytics",
                "enabled": false,
                "path": "rulesets\/Analytics.json"
            },
            {
                "id": "content",
                "enabled": false,
                "path": "rulesets\/Content.json"
            }
        ]
    }
}